Skip to content
Snippets Groups Projects
Commit 6be6ca76 authored by Łukasz Hanuszczak's avatar Łukasz Hanuszczak Committed by Mateusz Kowalczyk
Browse files

Get rid of code duplication in type specialization module.

parent 060b986c
No related branches found
No related tags found
No related merge requests found
......@@ -47,32 +47,26 @@ specializeTyVarBndrs bndrs typs =
bname (KindedTyVar (L _ name) _) = name
sugar :: (NamedThing name, DataId name) => HsType name -> HsType name
sugar = sugarTuples . sugarLists
sugarLists :: forall name. (NamedThing name, DataId name)
=> HsType name -> HsType name
sugarLists = everywhere $ mkT (sugarListsStep :: HsType name -> HsType name)
sugar :: forall name. (NamedThing name, DataId name)
=> HsType name -> HsType name
sugar =
everywhere $ mkT step
where
step :: HsType name -> HsType name
step = sugarTuples . sugarLists
sugarListsStep :: NamedThing name => HsType name -> HsType name
sugarListsStep (HsAppTy (L _ (HsTyVar name)) ltyp)
sugarLists :: NamedThing name => HsType name -> HsType name
sugarLists (HsAppTy (L _ (HsTyVar name)) ltyp)
| isBuiltInSyntax name' && strName == "[]" = HsListTy ltyp
where
name' = getName name
strName = occNameString . nameOccName $ name'
sugarListsStep typ = typ
sugarTuples :: forall name. (NamedThing name, DataId name)
=> HsType name -> HsType name
sugarTuples = everywhere $
mkT (sugarTuplesStep :: HsType name -> HsType name)
sugarLists typ = typ
sugarTuplesStep :: NamedThing name => HsType name -> HsType name
sugarTuplesStep typ =
sugarTuples :: NamedThing name => HsType name -> HsType name
sugarTuples typ =
aux [] typ
where
aux apps (HsAppTy (L _ ftyp) atyp) = aux (atyp:apps) ftyp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment