-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Description
Currently, the parser is unable to handle vararg function declarations like e.g.
local function printf(...)
print(string.format(...))
end
local function printf_alternative(fmt, ...)
print(string.format(fmt, ...))
endas it always expects identifiers in the argument list.
Pull request #1 is a first, incomplete attempt to fix this. I've submitted my solution in #2.
Regards, NiteHawk
Metadata
Metadata
Assignees
Labels
No labels