Safe Haskell | None |
---|---|
Language | Haskell98 |
- type LImportDecl name = Located (ImportDecl name)
- data ImportDecl name = ImportDecl {
- ideclName :: Located ModuleName
- ideclPkgQual :: Maybe FastString
- ideclSource :: Bool
- ideclSafe :: Bool
- ideclQualified :: Bool
- ideclImplicit :: Bool
- ideclAs :: Maybe ModuleName
- ideclHiding :: Maybe (Bool, [LIE name])
- simpleImportDecl :: ModuleName -> ImportDecl name
- type LIE name = Located (IE name)
- data IE name
- = IEVar name
- | IEThingAbs name
- | IEThingAll name
- | IEThingWith name [name]
- | IEModuleContents ModuleName
- | IEGroup Int HsDocString
- | IEDoc HsDocString
- | IEDocNamed String
- ieName :: IE name -> name
- ieNames :: IE a -> [a]
- pprImpExp :: (HasOccName name, OutputableBndr name) => name -> SDoc
Documentation
type LImportDecl name = Located (ImportDecl name) Source
data ImportDecl name Source
A single Haskell import
declaration.
ImportDecl | |
|
Data name => Data (ImportDecl name) | |
(OutputableBndr name, HasOccName name) => Outputable (ImportDecl name) | |
Typeable (* -> *) ImportDecl |
simpleImportDecl :: ModuleName -> ImportDecl name Source
Imported or exported entity.
IEVar name | |
IEThingAbs name | Class/Type (can't tell) |
IEThingAll name | ClassType plus all methodsconstructors |
IEThingWith name [name] | ClassType plus some methodsconstructors |
IEModuleContents ModuleName | (Export Only) |
IEGroup Int HsDocString | Doc section heading |
IEDoc HsDocString | Some documentation |
IEDocNamed String | Reference to named doc |
Eq name => Eq (IE name) | |
Data name => Data (IE name) | |
(HasOccName name, OutputableBndr name) => Outputable (IE name) | |
Typeable (* -> *) IE |
pprImpExp :: (HasOccName name, OutputableBndr name) => name -> SDoc Source