29 Mar 04:44
r11765 - trunk/libraries/utilities/peg-parser
From: <agent <at> gwydiondylan.org>
Subject: r11765 - trunk/libraries/utilities/peg-parser
Newsgroups: gmane.comp.lang.dylan.gwydion.cvs
Date: 2008-03-29 03:44:59 GMT
Subject: r11765 - trunk/libraries/utilities/peg-parser
Newsgroups: gmane.comp.lang.dylan.gwydion.cvs
Date: 2008-03-29 03:44:59 GMT
Author: agent Date: Sat Mar 29 04:44:58 2008 New Revision: 11765 Modified: trunk/libraries/utilities/peg-parser/parser-definers.dylan trunk/libraries/utilities/peg-parser/parser-rules.dylan trunk/libraries/utilities/peg-parser/parser-support.dylan Log: Job: minor Improved comments. Modified: trunk/libraries/utilities/peg-parser/parser-definers.dylan ============================================================================== --- trunk/libraries/utilities/peg-parser/parser-definers.dylan (original) +++ trunk/libraries/utilities/peg-parser/parser-definers.dylan Sat Mar 29 04:44:58 2008 @@ -1,10 +1,21 @@ module: peg-parser synopsis: PEG parser macro definitions. +// See parser-rules.dylan for a full explanation of rule parsers. Basically, +// rule parsers parse a stream in a given context and return a value or sequence +// of values called the "product." /// SYNOPSIS: Defines an arbitrary 'rule parser'. /// DISCUSSION: This macro defines a rule parser that includes support for -/// debugging and other features described for rule parsers. +/// debugging and other features described for rule parsers. The main part of +/// the parser is Dylan code supplied by you. +///(Continue reading)
RSS Feed