purescript-0.15.7: PureScript Programming Language Compiler
Safe HaskellSafe-Inferred
LanguageHaskell2010

Language.PureScript.Ide.Imports.Actions

Synopsis

Documentation

addImplicitImport Source #

Arguments

:: (MonadIO m, MonadError IdeError m) 
=> FilePath

The source file read from

-> ModuleName

The module to import

-> m [Text] 

Adds an implicit import like import Prelude to a Sourcefile.

addQualifiedImport Source #

Arguments

:: (MonadIO m, MonadError IdeError m) 
=> FilePath

The sourcefile read from

-> ModuleName

The module to import

-> ModuleName

The qualifier under which to import

-> m [Text] 

Adds a qualified import like import Data.Map as Map to a source file.

addImportForIdentifier Source #

Arguments

:: (Ide m, MonadError IdeError m) 
=> FilePath

The Sourcefile to read from

-> Text

The identifier to import

-> Maybe ModuleName

The optional qualifier under which to import

-> [Filter]

Filters to apply before searching for the identifier

-> m (Either [Match IdeDeclaration] [Text]) 

Looks up the given identifier in the currently loaded modules.

  • Throws an error if the identifier cannot be found.
  • If exactly one match is found, adds an explicit import to the importsection
  • If more than one possible imports are found, reports the possibilities as a list of completions.

answerRequest :: MonadIO m => Maybe FilePath -> [Text] -> m Success Source #

Writes a list of lines to Just filepath and responds with a TextResult, or returns the lines as a MultilineTextResult if Nothing was given as the first argument.