[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: parse tree
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Wed, 18 Aug 1999 22:39:09 -0300 (EST)
>From lua-l@tecgraf.puc-rio.br Wed Aug 18 22:28:15 1999
>From: Paul Bleisch <PBleisch@digitalanvil.com>
>How hard would it be for someone to add "support" for read-only access
>to the parse tree into the C API? i.e. any pointers on where to look
>in the code?
No parse tree is built. The parser (lparser.c) is a recursive descent one
that generates code on the fly.
What would you want to do with a parse tree?
--lhf