We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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, ...)) end
as 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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, the parser is unable to handle vararg function declarations like e.g.
as 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
The text was updated successfully, but these errors were encountered: