definition:
|
showJSFDecl :: JSFDecl -> String
showJSFDecl (JSFDecl f args body) =
"function " ++ f ++ "(" ++
intercalate "," (map showJSExp (map JSIVar args)) ++ ") {\n" ++
concatMap (( ++ "\n") . (showJSStat 2)) body ++ "}\n\n"
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Shows a JavaScript function declaration as a string in JavaScript syntax.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({JSFDecl}) |-> _}
|
name:
|
showJSFDecl
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Language.JavaScript.Types.JSFDecl -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|