definition:
|
getOutputOption :: Config -> (Config -> String -> [SrcLine] -> [Message] -> String)
getOutputOption c = case oType c of
JSON -> renderMessagesToJson
TEXT -> renderMessagesToString
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Determines output function by configuration.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {renderMessagesToJson,renderMessagesToString}}
|
name:
|
getOutputOption
|
precedence:
|
no precedence defined
|
result-values:
|
{renderMessagesToJson,renderMessagesToString}
|
signature:
|
Types.Config -> Types.Config -> String -> [(Prelude.Int, String)]
-> [Types.Message] -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|