definition:
|
checkProgs :: VStateM ()
checkProgs = do
vstate <- get
bs <- lift $ mapM (`isSaneProg` True) (currTAProgs vstate)
lift $ if and bs
then putStrLn "TYPE CHECK: SUCCESS"
else putStrLn "TYPE CHECK: FAILURE"
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Run type check on all programs
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> _}
|
name:
|
checkProgs
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Control.Monad.Trans.State.StateT VState Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|