zeolite-lang-0.5.0.0: Zeolite is a statically-typed, general-purpose programming language.

Safe HaskellSafe
LanguageHaskell2010

Base.CompileError

Documentation

class CompileError a where Source #

Minimal complete definition

compileError, isCompileError

Instances
CompileErrorM m => CompileError (m a) Source # 
Instance details

Defined in Base.CompileError

Methods

compileError :: String -> m a Source #

isCompileError :: m a -> Bool Source #

reviseError :: m a -> String -> m a Source #