lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> BTW, what about the limit per-block as opposed to the current limit
> per-function?

There are several alternatives:

1) one label per file
2) one label per function (as it is in rc2)
3) one label per scope (at any point in the code at most one label is
visible)
4) one label per block (as it was in rc1)
5) no restrictions

It is a compromise: avoiding messy code versus too much restriction. (1)
is the most restrictive (too much), (5) the most permissive (too much).
In my view, alternatives 2, 3, and 4 are all reasonable.

-- Roberto