welcome: please sign in

Diff for "DomTool/LanguageReference"

Differences between revisions 1 and 112 (spanning 111 versions)
Revision 1 as of 2006-12-17 16:47:06
Size: 1640
Editor: AdamChlipala
Comment:
Revision 112 as of 2008-03-20 22:34:40
Size: 1665
Editor: 222
Comment: . - http://coolbeast.summerhost.info/lindalusardi.html linda lusardi - http://coolbeast.summerhost.info/melindastolp.html melinda stolp - http://coolbeast.summerhost.info/zettaikareshi.html zettai kar
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://coolbeast.summerhost.info/lindalusardi.html linda lusardi - http://coolbeast.summerhost.info/melindastolp.html melinda stolp - http://coolbeast.summerhost.info/zettaikareshi.html zettai kareshi - http://coolbeast.summerhost.info/sabrinasabrok.html sabrina sabrok - http://coolbeast.summerhost.info/stripperellanude.html stripperella nude - http://coolbeast.summerhost.info/aqualungbrighterthansunshine.html aqualung brighter than sunshine - http://coolbeast.summerhost.info/quinnkoloski.html quinn koloski - http://coolbeast.summerhost.info/firemanhunks.html fireman hunks - http://coolbeast.summerhost.info/hustlerlawnmowers.html hustler lawn mowers - http://coolbeast.summerhost.info/firewoodprocessor.html firewood processor - http://coolbeast.summerhost.info/hidascan.html hida scan - http://coolbeast.summerhost.info/loraincountyauditor.html lorain county auditor - http://coolbeast.summerhost.info/stranglenails.html stranglenails - http://coolbeast.summerhost.info/discogram.html discogram - http://coolbeast.summerhost.info/saetia.html saetia - http://coolbeast.summerhost.info/bedroombondage.html bedroombondage - http://coolbeast.summerhost.info/horseland.html horseland - http://coolbeast.summerhost.info/skateboardingbails.html skateboarding bails - http://coolbeast.summerhost.info/ffaemblem.html ffa emblem - http://coolbeast.summerhost.info/nudesunbathers.html nude sunbathers - http://coolbeast.summerhost.info/sallirichardson.html salli richardson - http://coolbeast.summerhost.info/fullmetalalchamist.html full metal alchamist - http://coolbeast.summerhost.info/wagnerpaintsprayers.html wagner paint sprayers -
----
CategoryCategory

. - http://coolbeast.summerhost.info/lindalusardi.html linda lusardi - http://coolbeast.summerhost.info/melindastolp.html melinda stolp - http://coolbeast.summerhost.info/zettaikareshi.html zettai kareshi - http://coolbeast.summerhost.info/sabrinasabrok.html sabrina sabrok - http://coolbeast.summerhost.info/stripperellanude.html stripperella nude - http://coolbeast.summerhost.info/aqualungbrighterthansunshine.html aqualung brighter than sunshine - http://coolbeast.summerhost.info/quinnkoloski.html quinn koloski - http://coolbeast.summerhost.info/firemanhunks.html fireman hunks - http://coolbeast.summerhost.info/hustlerlawnmowers.html hustler lawn mowers - http://coolbeast.summerhost.info/firewoodprocessor.html firewood processor - http://coolbeast.summerhost.info/hidascan.html hida scan - http://coolbeast.summerhost.info/loraincountyauditor.html lorain county auditor - http://coolbeast.summerhost.info/stranglenails.html stranglenails - http://coolbeast.summerhost.info/discogram.html discogram - http://coolbeast.summerhost.info/saetia.html saetia - http://coolbeast.summerhost.info/bedroombondage.html bedroombondage - http://coolbeast.summerhost.info/horseland.html horseland - http://coolbeast.summerhost.info/skateboardingbails.html skateboarding bails - http://coolbeast.summerhost.info/ffaemblem.html ffa emblem - http://coolbeast.summerhost.info/nudesunbathers.html nude sunbathers - http://coolbeast.summerhost.info/sallirichardson.html salli richardson - http://coolbeast.summerhost.info/fullmetalalchamist.html full metal alchamist - http://coolbeast.summerhost.info/wagnerpaintsprayers.html wagner paint sprayers -


CategoryCategory

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