hsimport-0.8.6: A command line program for extending the import list of a Haskell source file.

Safe HaskellNone
LanguageHaskell98

HsImport.ImportPos

Synopsis

Documentation

findImportPos :: HsImportDecl -> [HsImportDecl] -> Maybe ImportPos Source #

Returns the position where the import declaration for the new import should be put into the list of import declarations.

data ImportPos Source #

Where a new import declaration should be added.

Constructors

Before HsImportDecl

before the specified import declaration

After HsImportDecl

after the specified import declaration

matchingImports :: ModuleName -> [HsImportDecl] -> [HsImportDecl] Source #

Returns all import declarations having the same module name.

bestMatchingImport :: ModuleName -> [HsImportDecl] -> Maybe HsImportDecl Source #

Returns the best matching import declaration for the given module name. E.g. if the module name is Foo.Bar.Boo, then Foo.Bar is considered better matching than Foo.