lua-users home
lua-l archive

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


On Thu, Sep 23, 2004 at 12:39:06PM -0500, Rici Lake wrote:
> 
> On 23-Sep-04, at 12:36 PM, Jamie Webb wrote:
> 
> >If it doesn't need to be fast, I think it may not be too hard to do by
> >treating each /statement/ as a separate chunk (roughly what the
> >interactive interpreter does, but also breaking up statements on a
> >single line). I only see two issues to address:
> 
> What about the issue of recovering the original source code for the 
> line in question?

I'm assuming that the source can be loaded and manipulated in
uncompiled form. Each statement is only compiled just before it is
executed.

-- Jamie Webb