definition:
|
translateContracts :: Int -> [String] -> String -> String -> CurryProg
-> IO (Maybe CurryProg)
translateContracts verb moreopts modname srcprog inputProg = do
when (verb>1) $ putStr banner
opts <- processOpts defaultOptions moreopts
transformCProg verb opts modname srcprog inputProg (progName inputProg)
where
processOpts opts ppopts = case ppopts of
[] -> return opts
("-e":more) -> processOpts (opts { withEncapsulate = True }) more
("-t":more) -> processOpts (opts { topLevelContracts = True }) more
_ -> showError
where
showError = do
putStrLn $ "Unknown options (ignored): " ++ show (unwords ppopts)
return opts
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------
--- Execute the contract wrapper in "preprocessor mode".
--- The Curry program must be read with `readCurry` (and not
--- `readUntypedCurry`) in order to correctly process arities
--- based on function types!
--- The result is `Nothing` if no transformation was applied or `Just` the
--- transformed program.
|
indeterministic:
|
might be indeterministic
|
infix:
|
no fixity defined
|
name:
|
translateContracts
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Int -> [String] -> String -> String -> AbstractCurry.Types.CurryProg
-> Prelude.IO (Prelude.Maybe AbstractCurry.Types.CurryProg)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|