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

Safe HaskellNone

HsImport.ImportPos

Synopsis

Documentation

findImportPos :: ImportDecl -> [ImportDecl] -> Maybe ImportPosSource

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 ImportDecl

before the specified import declaration

After ImportDecl

after the specified import declaration

matchingImports :: ModuleName -> [ImportDecl] -> [ImportDecl]Source

Returns all import declarations having the same module name.

bestMatchingImport :: ModuleName -> [ImportDecl] -> Maybe ImportDeclSource

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.