lua-users home
lua-l archive

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


Oh well, if it is time to add some suggestions.

Just a lexer one : adding a `const´ keyword
I know people are not really happy with adding endlessly some keywords, and that may breaks some programs already using it as a variable name... But I think this is really helpful to auto document code.
I don't intend the interpreter to perform anything with it, but just as `;´ has been added to be immediately forgotten, this could be nice to add this to help documenting the code.
It can then be a special kind of comment discarded by lexer so that code overhead is very limited... Or be more tightly coupled to grammar to limit risks of ambiguity with variable names...

namelist ::= Name [`const´] {`,´ Name [`const´]}
var ::=  Name [`const´] | prefixexp `[´ exp `]´ | prefixexp `.´ Name 
funcbody ::= `(´ [parlist1] `)´ [`const´] block `end´

-----Original Message-----
From: lua-bounces@bazar2.conectiva.com.br [mailto:lua-bounces@bazar2.conectiva.com.br] On Behalf Of Luiz Henrique de Figueiredo
Sent: Sunday, June 11, 2006 12:26 AM
To: Lua list
Subject: Re: Lua 5.1.1 has been frozen

> Is there a published 'roadmap' of what is up-and-coming in lua - for 5.2
> and beyond?

No roadmap, published or otherwise. Do you have any special requests??
--lhf