diff options
Diffstat (limited to 'compiler/Language/Haskell/Syntax/ImpExp.hs')
-rw-r--r-- | compiler/Language/Haskell/Syntax/ImpExp.hs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/Language/Haskell/Syntax/ImpExp.hs b/compiler/Language/Haskell/Syntax/ImpExp.hs index 7e529701c4..b31c417936 100644 --- a/compiler/Language/Haskell/Syntax/ImpExp.hs +++ b/compiler/Language/Haskell/Syntax/ImpExp.hs @@ -3,6 +3,7 @@ module Language.Haskell.Syntax.ImpExp where import Language.Haskell.Syntax.Extension +import Language.Haskell.Syntax.Module.Name import Data.Eq (Eq) import Data.Ord (Ord) @@ -14,7 +15,6 @@ import Data.String (String) import Data.Int (Int) import GHC.Hs.Doc -- ROMES:TODO Discuss in #21592 whether this is parsed AST or base AST -import GHC.Data.FastString {- ************************************************************************ @@ -26,9 +26,6 @@ Import and export declaration lists One per import declaration in a module. -} --- | A ModuleName is essentially a simple string, e.g. @Data.List@. -newtype ModuleName = ModuleName FastString deriving Show - -- | Located Import Declaration type LImportDecl pass = XRec pass (ImportDecl pass) -- ^ When in a list this may have |