definition:
|
checkBreakIndent :: String -> Int -> Int -> SpanInfo -> CSM ()
checkBreakIndent s l c sI = do
unless (l == (getLi sI))
(unless ((getCol sI)==(c+2))
(report (Message
(getSpan sI)
( colorizeKey "expression"
<+> text "wrongly indented"
)
( colorizeKey(s ++ " expression")
<+> text "should be indented by 2 from"
<+> colorizeKey s
)
)
)
)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Gets keyname as string, keypositions and the expression to check
-- if the expression is in next line, checks indent.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
checkBreakIndent
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Prelude.Int -> Prelude.Int -> Curry.SpanInfo.SpanInfo
-> 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
|