definition:
|
checkGuard' :: SpanInfo -> SpanInfo -> [CondExpr a] -> Int -> CSM ()
checkGuard' p sI (cExpr:cExprs) i = case p of
(SpanInfo (Span (Position lf _) _) _) -> do
if checkAlign getCol (getCol (getSpanInfo cExpr)) cExprs
then checkGuardIndent sI lf cExpr i
else report (Message (getSpan sI)
(colorizeKey "guards" <+> text "not aligned")
(text "align" <+> colorizeKey "guards"))
if checkAlign getEqualCol (getEqualCol (getSpanInfo cExpr)) cExprs
then (unless (guardsEqualSSameLine (cExpr:cExprs)) (checkEqualIndent sI cExpr))
else report (Message (getSpan sI)
(colorizeKey "guard" <+> text "equal signs not aligned")
(text "align" <+> colorizeKey "guard" <+> text "equal signs"))
_ -> return ()
checkGuard' _ _ [] _ = return ()
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
-- If bars are aligned, this function checks their indent, otherwise it
-- reports same for equal signs, if one starts in same line as its guard,
-- disregard indentation.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({SpanInfo},_,{:},_) |-> _ || ({NoSpanInfo},_,{:},_) |-> _ || (_,_,{[]},_) |-> _}
|
name:
|
checkGuard'
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Curry.SpanInfo.SpanInfo -> Curry.SpanInfo.SpanInfo -> [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
|