CurryInfo: stylechecker-2.0.0 / Check.AST.Indent.FuncRhs.checkRhs'

definition:
checkRhs' :: SpanInfo -> [Equation a] -> CSM ()
checkRhs' (SpanInfo sp _) eqs = do
  let (rhs:rhss) = map getRhs eqs
  unless (checkAlign getCol (getCol (getSpanInfo rhs)) rhss)
          (report (Message
                      sp
                      ( colorizeKey "guards"
                        <+> text "and"
                        <+> colorizeKey "equal signs"
                        <+> text "not aligned"
                      )
                      ( colorizeKey "guards"
                        <+> text "and"
                        <+> colorizeKey "equal signs"
                        <+> text "should be aligned in"
                        <+> colorizeKey "function declaration"
                      )
                )
            )
checkRhs' NoSpanInfo _ = return ()
demand:
argument 1
deterministic:
deterministic operation
documentation:
-- Gets `rhs` of equations and checks the alignment of their root (either guards or equal
-- signs), the alignement within an rhs is checked by their respective checks
-- however.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({SpanInfo},_) |-> _ || ({NoSpanInfo},_) |-> _}
name:
checkRhs'
precedence:
no precedence defined
result-values:
_
signature:
Curry.SpanInfo.SpanInfo -> [Curry.Types.Equation a]
-> 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