definition: |
checkDeriving :: Decl a -> Int -> CSM () checkDeriving e _ = case e of (DataDecl sI _ _ constr derivs) -> checkDeriving' sI constr derivs _ -> return () |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
-- Applies actual check on data declarations. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({DataDecl},_) |-> _ || ({InfixDecl},_) |-> _ || ({ExternalDataDecl},_) |-> _ || ({NewtypeDecl},_) |-> _ || ({TypeDecl},_) |-> _ || ({TypeSig},_) |-> _ || ({FunctionDecl},_) |-> _ || ({ExternalDecl},_) |-> _ || ({PatternDecl},_) |-> _ || ({FreeDecl},_) |-> _ || ({DefaultDecl},_) |-> _ || ({ClassDecl},_) |-> _ || ({InstanceDecl},_) |-> _} |
name: |
checkDeriving |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Curry.Types.Decl 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 |