psc-ide-0.3.0.0: Language support for the PureScript programming language

Safe HaskellNone
LanguageHaskell2010

PureScript.Ide

Synopsis

Documentation

loadModulesAndDeps :: [ModuleIdent] -> [ModuleIdent] -> PscIde (Either Error Success) Source

The first argument is a set of modules to load. The second argument denotes modules for which to load dependencies

maybeToEither Source

Arguments

:: MonadError e m 
=> e

(Left e) will be returned if the Maybe value is Nothing

-> Maybe a

(Right a) will be returned if this is (Just a)

-> m a 

Taken from Data.Either.Utils