definition:
|
toStaticHtml :: BaseHtml -> StaticHtml
toStaticHtml (BaseText s) = HText s
toStaticHtml (BaseStruct t atts hs) = HStruct t atts (map toStaticHtml hs)
toStaticHtml (BaseAction _) =
error "HTML.Base.toStaticHtml: BaseAction occurred in base HTML expression"
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transforms a `BaseHtml` expression into a `StaticHtml` expression
--- provided that `BaseAction` constructors do not occur (otherwise,
--- an error is raised).
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({BaseText}) |-> {HText} || ({BaseStruct}) |-> {HStruct}}
|
name:
|
toStaticHtml
|
precedence:
|
no precedence defined
|
result-values:
|
{HStruct,HText}
|
signature:
|
BaseHtml -> StaticHtml
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|