lua-users home
lua-l archive

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


> Any verdict from the Lua authors on that change yet?

The syntax for function "names" in Lua 4.1 will be

         name { '.' name } [ ':' name ]

That is, zero or more '.name' components, followed by an optional ':name'.
This is fully compatible, and as someone (you?) pointed out, really
useful for objects inside modules.

-- Roberto