lua-users home
lua-l archive

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


Any warning for shadowing would almost certainly want to make an exception for '_' since it is frequently used for don't care variables including in constructs like:

local _, _, third = returnThree()

Mark