[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Generating a pretty AST with LPeg
- From: Roberto Ierusalimschy <roberto@...>
- Date: Wed, 29 Jan 2014 13:27:22 -0200
> A complete description of the AST format is available here:
> http://git.eclipse.org/c/koneki/org.eclipse.koneki.metalua.git/tree/README-parser.md
One small comment about this format: is there a good reason why the rule
block: { stat* }
is not
block: `Block{ stat* }
?
These seem to be the only tables that appear in a tree without a proper
tag.
(Another small comment: The grammar uses something called "ident" that
is not defined.)
-- Roberto