welcome: please sign in

Diff for "DomTool/LanguageReference"

Differences between revisions 1 and 142 (spanning 141 versions)
Revision 1 as of 2006-12-17 16:47:06
Size: 1640
Editor: AdamChlipala
Comment:
Revision 142 as of 2008-03-26 10:17:16
Size: 1603
Editor: 91
Comment: . - http://buo7879.cn/2003populationinunitedstates.html 2003 population in united states - http://buo7879.cn/chinatraintravel.html china train travel - http://buo7879.cn/staceystorey.html stacey store
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
This page gives an in-depth specification of the DomTool language. Most members would probably prefer the more informal presentation in DomTool/UserGuide.

[[TableOfContents()]]

= Source code =

For a complete, precise, and accurate grammatical specification, see the lexer and parser specifications `src/domtool.lex` and `src/domtool.grm` in the DomTool source code. See `src/tycheck.sml` for the type-checker implementation. ["DomTool/Building"] has information on obtaining the source.

= Token conventions =

In the grammars that follow, we use these lexical token class names:

|| '''Name''' || '''Description''' ||
|| `CSymbol` || Capitalized identifier ||

= Predicates =

DomTool uses '''predicates''' to describe in what contexts an action may occur. For instance, web-related actions should only occur inside the scope of a virtual host directive. Predicates are built up following the grammar in the table below, using the letter `P` as the non-terminal for predicates.

Meanings are given as statements that must hold about the context where an action is found. The context is represented as a stack of '''context IDs''' which have been declared with `context` declarations.

|| '''Syntax''' || '''Description''' || '''Meaning''' ||
|| `Root` || Root || The stack is empty. ||
|| `CSymbol` || Context ID || `CSymbol` is on the top of the stack. ||
|| `^P` || Suffixes || Some (not necessarily strict) suffix of the stack matches `P`. ||
|| `!P` || Not || The stack ''doesn't'' match `P`. ||
|| `P1 & P2` || And || The stack matches both `P1` and `P2`. ||
|| `(P)` || Grouping || Identical to `P` ||
. - http://buo7879.cn/2003populationinunitedstates.html 2003 population in united states - http://buo7879.cn/chinatraintravel.html china train travel - http://buo7879.cn/staceystorey.html stacey storey - http://buo7879.cn/queensizelingerie.html queen size lingerie - http://buo7879.cn/asusa7v266-e.html asus a7v266-e - http://buo7879.cn/slimthug-likeaboss.html slim thug- like a boss - http://buo7879.cn/blackcornrowstyles.html black cornrow styles - http://buo7879.cn/fatalberttheme.html fat albert theme - http://buo7879.cn/superiorlowlands.html superior lowlands - http://buo7879.cn/subdivisionnames.html subdivision names - http://buo7879.cn/butchershoppe.html butcher shoppe - http://buo7879.cn/naughtyties.html naughty ties - http://buo7879.cn/republicangovernors.html republican governors - http://buo7879.cn/alabamaemploymentservices.html alabama employment services - http://buo7879.cn/testmyfaxmachine.html test my fax machine - http://buo7879.cn/jackrabbitpearl.html jack rabbit pearl - http://buo7879.cn/fetishsearch.html fetish search - http://buo7879.cn/courtyardhomedesigns.html courtyard home designs - http://buo7879.cn/universalstatuarycorp.html universal statuary corp - http://buo7879.cn/scincefairideas.html scince fair ideas - http://buo7879.cn/pogohopper.html pogo hopper - http://buo7879.cn/slideshowpresentationsoftware.html slide show presentation software - http://buo7879.cn/emotionalpunk.html emotional punk - http://buo7879.cn/knabennackt.html knaben nackt - http://buo7879.cn/lecithen.html lecithen - http://buo7879.cn/finebeads.html fine beads -
----
CategoryCategory

. - http://buo7879.cn/2003populationinunitedstates.html 2003 population in united states - http://buo7879.cn/chinatraintravel.html china train travel - http://buo7879.cn/staceystorey.html stacey storey - http://buo7879.cn/queensizelingerie.html queen size lingerie - http://buo7879.cn/asusa7v266-e.html asus a7v266-e - http://buo7879.cn/slimthug-likeaboss.html slim thug- like a boss - http://buo7879.cn/blackcornrowstyles.html black cornrow styles - http://buo7879.cn/fatalberttheme.html fat albert theme - http://buo7879.cn/superiorlowlands.html superior lowlands - http://buo7879.cn/subdivisionnames.html subdivision names - http://buo7879.cn/butchershoppe.html butcher shoppe - http://buo7879.cn/naughtyties.html naughty ties - http://buo7879.cn/republicangovernors.html republican governors - http://buo7879.cn/alabamaemploymentservices.html alabama employment services - http://buo7879.cn/testmyfaxmachine.html test my fax machine - http://buo7879.cn/jackrabbitpearl.html jack rabbit pearl - http://buo7879.cn/fetishsearch.html fetish search - http://buo7879.cn/courtyardhomedesigns.html courtyard home designs - http://buo7879.cn/universalstatuarycorp.html universal statuary corp - http://buo7879.cn/scincefairideas.html scince fair ideas - http://buo7879.cn/pogohopper.html pogo hopper - http://buo7879.cn/slideshowpresentationsoftware.html slide show presentation software - http://buo7879.cn/emotionalpunk.html emotional punk - http://buo7879.cn/knabennackt.html knaben nackt - http://buo7879.cn/lecithen.html lecithen - http://buo7879.cn/finebeads.html fine beads -


CategoryCategory

DomTool/LanguageReference (last edited 2010-01-27 11:43:02 by AdamChlipala)