definition:
|
checkIfThenElseInTwoLines :: Span -> Int -> Int -> CSM ()
checkIfThenElseInTwoLines sp pt pe =
unless (pt == pe) (report (Message
sp
( colorizeKey "then"
<+> text "and"
<+> colorizeKey "else"
<+> text "wrong alignement"
)
( text "align"
<+> colorizeKey "then"
<+> text "and"
<+> colorizeKey "else"
)
)
)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- `then` and `else` should alway be aligned.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
checkIfThenElseInTwoLines
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Curry.Span.Span -> Prelude.Int -> 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
|