[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Request for help on extending if statement (lparser.c)
- From: David Manura <dm.lua@...>
- Date: Tue, 27 Oct 2009 22:32:41 -0400
On Tue, Oct 27, 2009 at 6:01 PM, Alexander Walz wrote:
> Of course, statementsXY could be put into a procedure to be called from
> within the if statement.
or transformed via token filters, in a way that preserves line numbers
for debugging:
local _FINALLY; if cond1 then
statement1
_FINALLY = true; elseif cond 2 then
statement2;
_FINALLY = true; end; if _FINALLY then
statementX
statementY
else
other statements
end