definition:
|
checkGuard :: Equation a -> Int -> CSM ()
checkGuard e i =
case e of
(Equation _ _ (FunLhs fSI _ _) (GuardedRhs gSI _ cExprs _))
-> checkGuard' fSI gSI cExprs i
_ -> return ()
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Aplies actual check on Guards, the function lefthand side is needed
-- for positions.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({Equation},_) |-> _}
|
name:
|
checkGuard
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Curry.Types.Equation a -> Prelude.Int
-> Control.Monad.Trans.State.StateT Types.CheckState Data.Functor.Identity.Identity ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|