definition:
|
checkSrc :: [SrcLine] -> CSM ()
checkSrc src = mapM_ (\srcl -> do conf <- getCheckList
when (lineLength conf) $ checkLineLength srcl
when (tab conf) $ checkTab srcl
when (trailingS conf) $ checkTSpaces srcl
when (whiteSpace conf) $ checkWSpaces srcl
) src
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- TODO: iterate by yourself, for, MapM_ ChecksSrc?
-- gets sourcecode as a list of indexes and strings,
-- if a check is on, run check on source
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
checkSrc
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[(Prelude.Int, String)]
-> 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
|