definition:
|
twoLines :: Span -> Int -> Int -> CSM ()
twoLines sp x y =
unless (x == y) $
report (Message
sp
( colorizeKey "let"
<+> text "and"
<+> colorizeKey "in"
<+> text "not aligned"
)
( text "align"
<+> colorizeKey "let"
<+> text "and"
<+> colorizeKey "in"
)
)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Compares column positions of `let` and `in`.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
twoLines
|
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
|