lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


>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