definition:
|
getSrc :: String -> Config -> IO [(Int,String)]
getSrc fileName config =
if (anySrc config)
then do restrict config 2 $ "INFO: Parsing file " ++ fileName
ls <- readFile (fileName) >>= return . lines
let src = zip [1..(length ls)] ls
return $ filter (\(_,l) -> (length l) > 0) src
else return []
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Gets filename and config, if any check on src is on (config),
-- return the sourcecode in form of a list of lines, which
-- are indexed strings.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
getSrc
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Types.Config -> Prelude.IO [(Prelude.Int, String)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|