definition:
|
parseConfig :: Bool -> String -> IO Config
parseConfig verb conf = do
when verb $ putStrLn $ "INFO: Reading config file '" ++ conf ++ "'..."
file <- readFile conf
let ls = lines file
return $ Config (readCheckList ls (checks defaultConfig))
(readOType ls)
(readVerbosity ls (verbosity defaultConfig))
(readHint ls)
(readCode ls)
(readLength ls (maxLineLength defaultConfig))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- parseConfig returns the config in form of a record of bools,
-- by parsing the config file, initiate with defaultConfig
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
parseConfig
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Bool -> String -> Prelude.IO Types.Config
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|