Skip to content
Snippets Groups Projects

Namespace specifiers for fixity signatures

Merged Andrei Borzenkov requested to merge wip/sand-witch/infix-type-data into ghc-head
1 unresolved thread
Files
2
@@ -322,7 +322,7 @@ ppCtor dflags _dat subdocs (ConDeclGADT { con_names = names
@@ -322,7 +322,7 @@ ppCtor dflags _dat subdocs (ConDeclGADT { con_names = names
mkFunTy a b = noLocA (HsFunTy noExtField (HsUnrestrictedArrow noExtField) a b)
mkFunTy a b = noLocA (HsFunTy noExtField (HsUnrestrictedArrow noExtField) a b)
ppFixity :: DynFlags -> (Name, Fixity) -> [String]
ppFixity :: DynFlags -> (Name, Fixity) -> [String]
ppFixity dflags (name, fixity) = [out dflags ((FixitySig noExtField [noLocA name] fixity) :: FixitySig GhcRn)]
ppFixity dflags (name, fixity) = [out dflags ((FixitySig NoNamespaceSpecifier [noLocA name] fixity) :: FixitySig GhcRn)]
---------------------------------------------------------------------
---------------------------------------------------------------------
Loading