definition:
|
processOptions :: Options -> [String] -> IO Options
processOptions opts args = case args of
[] -> return opts
("--tex" : margs) -> processOptions opts { target = TEX } margs
("--html" : margs) -> processOptions opts { target = HTML } margs
("-o":fname : margs) -> processOptions opts { outFile = fname } margs
("-i" : margs) -> processOptions opts { standAlone = False } margs
("--include" : margs) -> processOptions opts { standAlone = False } margs
("-t" : s : margs) -> processOptions opts { title = s } margs
("--title":s : margs) -> processOptions opts { title = s } margs
['-':_] -> showError $ "Illegal arguments: " ++ unwords args ++ "\n" ++ howTo
[fname] -> return opts { inFile = fname }
_ -> showError $ "Illegal arguments: " ++ unwords args ++ "\n" ++ howTo
where
showError s = putStrLn s >> exitWith 1
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{[]}) |-> _ || (_,{:}) |-> _}
|
name:
|
processOptions
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> [String] -> Prelude.IO Options
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|