[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: 'in' keyword today (was Re: mathlib)
- From: Dirk Laurie <dirk.laurie@...>
- Date: Wed, 9 Apr 2014 11:11:59 +0200
2014-04-09 11:01 GMT+02:00 Thomas Jericke <tjericke@indel.ch>:
> local a, b, c = a, b, c in expression
> --expands to
> local temp_table = expression -- extra local needed
> local a, b, c = temp_table.a, temp_table.b, temp_table.c
local a, b, c = a, b, c in expression
-- expands to
local a, b, c
do
local temp_table = expression -- extra local will be released soon
a, b, c = temp_table.a, temp_table.b, temp_table.c
end
- References:
- Re: mathlib, Roberto Ierusalimschy
- Re: mathlib, steve donovan
- Re: mathlib, Christopher Berardi
- Re: mathlib, Sean Conner
- Re: mathlib, Coroutines
- Re: mathlib, Sean Conner
- Re: mathlib, Christopher Berardi
- Re: mathlib, steve donovan
- Re: mathlib, Coroutines
- Re: mathlib, steve donovan
- Re: mathlib, Coroutines
- 'in' keyword today (was Re: mathlib), Petite Abeille
- Re: 'in' keyword today (was Re: mathlib), Rena
- Re: 'in' keyword today (was Re: mathlib), Philipp Janda
- Re: 'in' keyword today (was Re: mathlib), Coroutines
- Re: 'in' keyword today (was Re: mathlib), Dirk Laurie
- Re: 'in' keyword today (was Re: mathlib), Thomas Jericke