welcome: please sign in

Diff for "DomTool/LanguageReference"

Differences between revisions 1 and 122 (spanning 121 versions)
Revision 1 as of 2006-12-17 16:47:06
Size: 1640
Editor: AdamChlipala
Comment:
Revision 122 as of 2008-03-22 13:07:47
Size: 1678
Editor: 222
Comment: . - http://fv379fviw.cn/salu.html salu - http://fv379fviw.cn/stainlesssteelprices.html stainless steel prices - http://fv379fviw.cn/spidermangallery.html spider man gallery - http://fv379fviw.cn/bradl
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://fv379fviw.cn/salu.html salu - http://fv379fviw.cn/stainlesssteelprices.html stainless steel prices - http://fv379fviw.cn/spidermangallery.html spider man gallery - http://fv379fviw.cn/bradleymorris.html bradley morris - http://fv379fviw.cn/pary.html pary - http://fv379fviw.cn/freemacramepatterns.html free macrame patterns - http://fv379fviw.cn/plcmc.html plcmc - http://fv379fviw.cn/brianschneider.html brian schneider - http://fv379fviw.cn/shanontweed.html shanon tweed - http://fv379fviw.cn/englishcottagegardens.html english cottage gardens - http://fv379fviw.cn/payrollcheckprinting.html payroll check printing - http://fv379fviw.cn/blonderoundass.html blonde round ass - http://fv379fviw.cn/millencollin.html millencollin - http://fv379fviw.cn/dellcomputerservice.html dell computer service - http://fv379fviw.cn/coolcakes.html cool cakes - http://fv379fviw.cn/arizonaaccidentattorney.html arizona accident attorney - http://fv379fviw.cn/hltv.html hltv - http://fv379fviw.cn/amigamiaalejandrosanz.html amiga mia alejandro sanz - http://fv379fviw.cn/dronabinol.html dronabinol - http://fv379fviw.cn/knuck.html knuck - http://fv379fviw.cn/basicyoga.html basic yoga - http://fv379fviw.cn/teenpeach.html teen peach - http://fv379fviw.cn/naturistics.html naturistics - http://fv379fviw.cn/wonderama.html wonderama - http://fv379fviw.cn/proananation.html pro ana nation - http://fv379fviw.cn/orangecountyforeclosure.html orange county foreclosure - http://fv379fviw.cn/frenchdognames.html french dog names - http://fv379fviw.cn/clintsmith.html clint smith - http://fv379fviw.cn/baseballcardauctions.html baseball card auctions -
----
CategorySystemAdministration

. - http://fv379fviw.cn/salu.html salu - http://fv379fviw.cn/stainlesssteelprices.html stainless steel prices - http://fv379fviw.cn/spidermangallery.html spider man gallery - http://fv379fviw.cn/bradleymorris.html bradley morris - http://fv379fviw.cn/pary.html pary - http://fv379fviw.cn/freemacramepatterns.html free macrame patterns - http://fv379fviw.cn/plcmc.html plcmc - http://fv379fviw.cn/brianschneider.html brian schneider - http://fv379fviw.cn/shanontweed.html shanon tweed - http://fv379fviw.cn/englishcottagegardens.html english cottage gardens - http://fv379fviw.cn/payrollcheckprinting.html payroll check printing - http://fv379fviw.cn/blonderoundass.html blonde round ass - http://fv379fviw.cn/millencollin.html millencollin - http://fv379fviw.cn/dellcomputerservice.html dell computer service - http://fv379fviw.cn/coolcakes.html cool cakes - http://fv379fviw.cn/arizonaaccidentattorney.html arizona accident attorney - http://fv379fviw.cn/hltv.html hltv - http://fv379fviw.cn/amigamiaalejandrosanz.html amiga mia alejandro sanz - http://fv379fviw.cn/dronabinol.html dronabinol - http://fv379fviw.cn/knuck.html knuck - http://fv379fviw.cn/basicyoga.html basic yoga - http://fv379fviw.cn/teenpeach.html teen peach - http://fv379fviw.cn/naturistics.html naturistics - http://fv379fviw.cn/wonderama.html wonderama - http://fv379fviw.cn/proananation.html pro ana nation - http://fv379fviw.cn/orangecountyforeclosure.html orange county foreclosure - http://fv379fviw.cn/frenchdognames.html french dog names - http://fv379fviw.cn/clintsmith.html clint smith - http://fv379fviw.cn/baseballcardauctions.html baseball card auctions -


CategorySystemAdministration

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