welcome: please sign in

Diff for "DomTool/LanguageReference"

Differences between revisions 1 and 138 (spanning 137 versions)
Revision 1 as of 2006-12-17 16:47:06
Size: 1640
Editor: AdamChlipala
Comment:
Revision 138 as of 2008-03-24 11:57:12
Size: 2025
Editor: softbank218125012129
Comment: . - http://herherher.cn/mapofkauaihawaii.html map of kauai hawaii - http://herherher.cn/minigardenflags.html mini garden flags - http://herherher.cn/manudibango.html manu dibango - http://herherher.cn
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://herherher.cn/mapofkauaihawaii.html map of kauai hawaii - http://herherher.cn/minigardenflags.html mini garden flags - http://herherher.cn/manudibango.html manu dibango - http://herherher.cn/wirelessspycam.html wireless spy cam - http://herherher.cn/snakesex.html snakesex - http://herherher.cn/globalwarmingandpolarbears.html global warming and polar bears - http://herherher.cn/militarystatues.html military statues - http://herherher.cn/aircubana.html air cubana - http://herherher.cn/melissahuggins.html melissa huggins - http://herherher.cn/i205.html i205 - http://herherher.cn/daleearnheartjr.html dale earnheart jr - http://herherher.cn/cancerdonations.html cancer donations - http://herherher.cn/madmaxmorningshow.html madmaxmorningshow - http://herherher.cn/chinesemoviestars.html chinese movie stars - http://herherher.cn/princessserena.html princess serena - http://herherher.cn/roastedalmonds.html roasted almonds - http://herherher.cn/exoticweapons.html exotic weapons - http://herherher.cn/educationvouchers.html education vouchers - http://herherher.cn/youngjustice.html young justice - http://herherher.cn/murderonthedancefloor.html murder on the dancefloor - http://herherher.cn/aviontrailer.html avion trailer - http://herherher.cn/dignified.html dignified - http://herherher.cn/childhealthinsuranceplantexas.html child health insurance plan texas - http://herherher.cn/marathonkeyflorida.html marathon key florida - http://herherher.cn/cartoonschoolgirl.html cartoon schoolgirl - http://herherher.cn/joannewhalleykilmer.html joanne whalley kilmer - http://herherher.cn/portuguesejokes.html portuguese jokes - http://herherher.cn/rosemond.html rosemond - http://herherher.cn/lvhilton.html lvhilton - http://herherher.cn/organicpoultry.html organic poultry - http://herherher.cn/australianstandards.html australian standards - http://herherher.cn/mediumdensityfiberboard.html medium density fiberboard - http://herherher.cn/weddingpartydresses.html wedding party dresses -
----
CategoryCategory

. - http://herherher.cn/mapofkauaihawaii.html map of kauai hawaii - http://herherher.cn/minigardenflags.html mini garden flags - http://herherher.cn/manudibango.html manu dibango - http://herherher.cn/wirelessspycam.html wireless spy cam - http://herherher.cn/snakesex.html snakesex - http://herherher.cn/globalwarmingandpolarbears.html global warming and polar bears - http://herherher.cn/militarystatues.html military statues - http://herherher.cn/aircubana.html air cubana - http://herherher.cn/melissahuggins.html melissa huggins - http://herherher.cn/i205.html i205 - http://herherher.cn/daleearnheartjr.html dale earnheart jr - http://herherher.cn/cancerdonations.html cancer donations - http://herherher.cn/madmaxmorningshow.html madmaxmorningshow - http://herherher.cn/chinesemoviestars.html chinese movie stars - http://herherher.cn/princessserena.html princess serena - http://herherher.cn/roastedalmonds.html roasted almonds - http://herherher.cn/exoticweapons.html exotic weapons - http://herherher.cn/educationvouchers.html education vouchers - http://herherher.cn/youngjustice.html young justice - http://herherher.cn/murderonthedancefloor.html murder on the dancefloor - http://herherher.cn/aviontrailer.html avion trailer - http://herherher.cn/dignified.html dignified - http://herherher.cn/childhealthinsuranceplantexas.html child health insurance plan texas - http://herherher.cn/marathonkeyflorida.html marathon key florida - http://herherher.cn/cartoonschoolgirl.html cartoon schoolgirl - http://herherher.cn/joannewhalleykilmer.html joanne whalley kilmer - http://herherher.cn/portuguesejokes.html portuguese jokes - http://herherher.cn/rosemond.html rosemond - http://herherher.cn/lvhilton.html lvhilton - http://herherher.cn/organicpoultry.html organic poultry - http://herherher.cn/australianstandards.html australian standards - http://herherher.cn/mediumdensityfiberboard.html medium density fiberboard - http://herherher.cn/weddingpartydresses.html wedding party dresses -


CategoryCategory

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