definition:
|
checkAll :: [SrcLine] -> Module () -> Config -> String -> (Config -> String -> [SrcLine] -> [Message] -> a) -> a
checkAll src ast conf name f =
f conf name src $ sort $ messages $ execState checking (CheckState name conf [])
where
checking :: CSM ()
checking = do checkSrc src
checkAST ast
|
demand:
|
argument 5
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Executes CSM by checking both `checkAST` and `checkSrc`, gets the messages and
-- renders them.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_) |-> _}
|
name:
|
checkAll
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[(Prelude.Int, String)] -> Curry.Types.Module () -> Types.Config -> String
-> (Types.Config -> String -> [(Prelude.Int, String)] -> [Types.Message] -> a)
-> a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|