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
Exceptions thrown from Lua programs do not include the filename and line information as they do in PUC-Lua. E.g.:
$ rembulan Rembulan 0.1-SNAPSHOT (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_60) > nil + 1 attempt to perform arithmetic on a nil value stack traceback: (omitted)
$ lua Lua 5.3.3 Copyright (C) 1994-2016 Lua.org, PUC-Rio > nil + 1 stdin:1: attempt to perform arithmetic on a nil value stack traceback: (omitted)
(It's about the stdin:1 prefix of the error message.)
stdin:1
Debugging Lua programs is difficult without this information.
The text was updated successfully, but these errors were encountered:
Indeed, this would be really helpful.
Sorry, something went wrong.
add location to lua runtime exceptions where available
db23b05
the tests needed wholesale changes because of the scala stringmatcher for error messages being a bit too clever in matching fixes mjanicek/rembulan#8
No branches or pull requests
Exceptions thrown from Lua programs do not include the filename and line information as they do in PUC-Lua. E.g.:
(It's about the
stdin:1
prefix of the error message.)Debugging Lua programs is difficult without this information.
The text was updated successfully, but these errors were encountered: