definition:
|
checkExprIndent :: Expression a -> Int -> Int -> Int -> CSM ()
checkExprIndent expr li ci i =
do let sI = getSpanInfo expr
unless (li == (getLi sI))
(unless (((ci+2) == (getCol sI))||((i+2)==(getCol sI)))
(report (Message
(getSpan sI)
( colorizeKey "in Expression"
<+> text "not properly indented"
)
( colorizeKey "in Expression"
<+> text "should be indented by 2 from"
<+> colorizeKey "in"
<+> text "or"
<+> colorizeKey "outer block"
)
)
)
)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Checks if in expression is on the same line as `in`, if not, check if indented
-- by 2 from edge or `in`.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
checkExprIndent
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Curry.Types.Expression a -> Prelude.Int -> 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
|