[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Redefining locals
- From: Mark Hamburg <mhamburg@...>
- Date: Fri, 12 Nov 2004 11:07:04 -0800
I started this with a why question.
I think the basic answer seems to be so that:
local _, _, val = expression
works without needing a special case.
I can buy that.
It may be useful, however, to lint for redefinitions within a scope other
than for "_" since most other cases are probably either errors or just as
well handled by introducing a nested scope.
Mark