definition:
|
checkDoStatements :: Int -> [Statement a] -> Expression a -> Bool
checkDoStatements p (st:sts) expr =
(p == getCol (getSpanInfo st)) && checkDoStatements (getCol (getSpanInfo st)) sts expr
checkDoStatements p [] expr = (p == getCol (getSpanInfo expr))
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Checks if statements and Expression are aligned.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{:},_) |-> _ || (_,{[]},_) |-> _}
|
name:
|
checkDoStatements
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Int -> [Curry.Types.Statement a] -> Curry.Types.Expression a
-> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|