definition:
|
checkData' :: SpanInfo -> [ConstrDecl] -> CSM ()
checkData' sI (l:ls) = case l of
(ConstrDecl _ _ _) -> checkCData sI (l:ls)
(RecordDecl _ _ _) -> checkRecord sI (l:ls)
_ -> return ()
checkData' _ [] = return ()
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Applies check according to declaration type.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{:}) |-> _ || (_,{[]}) |-> _}
|
name:
|
checkData'
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Curry.SpanInfo.SpanInfo -> [Curry.Types.ConstrDecl]
-> 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
|