CurryInfo: stylechecker-2.0.0 / Check.AST.Indent.Guard.checkGuardIndent

definition:
checkGuardIndent :: SpanInfo -> Int -> CondExpr a -> Int -> CSM ()
checkGuardIndent sI f cExpr i =
  let posCExprEq = (getSpanInfo cExpr)
  in unless ((getCol posCExprEq) == (i+2) && ((getLi posCExprEq) == f))
        $ report (Message (getSpan sI)
                     (colorizeKey "guards" <+> text "wrong indentation")
                     (text "indent by 2 from" <+> colorizeKey "outer block"))
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
-- Checks if they are indented by 2 from edge or start in same line as functionlhs.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,_,_) |-> _}
name:
checkGuardIndent
precedence:
no precedence defined
result-values:
_
signature:
Curry.SpanInfo.SpanInfo -> Prelude.Int -> Curry.Types.CondExpr 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