[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] LuaSrcDiet-0.12.1 (minor) release
- From: Patrick Rapin <toupie300@...>
- Date: Sat, 7 Apr 2012 17:53:41 +0200
> 'local' keyword removal isn't looking good -- gets very awkward attempting a
> general optimizer using the ad hoc data structures LuaSrcDiet currently has.
> Better to do it for the Lua 5.2 version.
By "local" keyword removal, are you thinking of making the following
substitution ?
local a = 12
local b = "str"
==>
local a,b=12,"str"
Because otherwise, I don't think "local" can be considered optional at all.