definition:
|
fromHtmlExp :: HtmlExp -> BaseHtml
fromHtmlExp (HtmlText s) = BaseText s
fromHtmlExp (HtmlStruct t ps hs) = BaseStruct t ps (map fromHtmlExp hs)
fromHtmlExp (HtmlAction a) = BaseAction a
fromHtmlExp (HtmlEvent _ _ hs) = fromHtmlExp hs
fromHtmlExp (HtmlInput _ hs) = fromHtmlExp hs
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transforms a dynamic HTML into a static one by dropping references
--- and event handlers.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({HtmlText}) |-> {BaseText} || ({HtmlStruct}) |-> {BaseStruct} || ({HtmlAction}) |-> {BaseAction} || ({HtmlEvent}) |-> {BaseAction,BaseStruct,BaseText} || ({HtmlInput}) |-> {BaseAction,BaseStruct,BaseText}}
|
name:
|
fromHtmlExp
|
precedence:
|
no precedence defined
|
result-values:
|
{BaseAction,BaseStruct,BaseText}
|
signature:
|
HtmlExp -> BaseHtml
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|