definition:
|
checkEqualIndent :: SpanInfo -> CondExpr a -> CSM ()
checkEqualIndent sI cExpr =
let posCExprEq = (getSpanInfo cExpr)
l = getLi sI
in unless ((getLi posCExprEq) == l)
$ report (Message (getSpan sI) (colorizeKey "equal signs" <+> text "wrong indentation")
(text "indent by 2 from" <+> colorizeKey "outer block"))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Checks if they are aligned with guards.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
checkEqualIndent
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Curry.SpanInfo.SpanInfo -> Curry.Types.CondExpr a
-> 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
|