I'd like to have the ability to convert, say: if op == OP_TAILCALL then ... -- fallthrough orif op == OP_CALL then ... end because it looks nicer this way I guess.
I might be a bit confused, but do you mean `elseif`?
if op == OP_TAILCALL then ... elseif op == OP_CALL then ... end
~Bas
|