definition:
|
altIndent :: SpanInfo -> Alt a -> Int -> CSM ()
altIndent sI alt i =
let cAlt = (getCol (getSpanInfo alt))
in
unless ((cAlt == ((getCol sI)+2)) || (cAlt == (i+2)))
$ report (Message (getSpan sI)
( (colorizeKey "case") <+> text "options wrong indention")
( text "start alternatives in next line and indent by 2 spaces from"
<+> colorizeKey "case"
<+> text "or" <+> colorizeKey "outer structur"
<+> text "; if"
<+> colorizeKey "case"
<+> text "is the topmost control structur from start of line"))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Alternatives should be in the next line from case, and indented by 2 from
-- outer edge or case.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
altIndent
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Curry.SpanInfo.SpanInfo -> Curry.Types.Alt a -> 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
|