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
the current debug eval readline loop (IN_C and in .pn) doesn't allow access to registers, locals, upvals and values (paths) as :r,:l,:v,:u.
remote debuggers need the functionality as spec'd in https://github.com/perl11/potion/wiki/Debuger-interface
:debug (global debug object, bound to the debug object, prefixed with :) :ast (current ast) :cl (current closure)
debug getinfo = (level, name): . debug getlocal = (f, i): . debug setlocal = (f, i, name): . debug setupvalue = (f, i, name): . debug traceback = (f| level): .
We need to do this in a new closure with those values locally defined.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the current debug eval readline loop (IN_C and in .pn) doesn't allow access to registers, locals, upvals and values (paths) as :r,:l,:v,:u.
remote debuggers need the functionality as spec'd in https://github.com/perl11/potion/wiki/Debuger-interface
:debug (global debug object, bound to the debug object, prefixed with :)
:ast (current ast)
:cl (current closure)
debug getinfo = (level, name): .
debug getlocal = (f, i): .
debug setlocal = (f, i, name): .
debug setupvalue = (f, i, name): .
debug traceback = (f| level): .
We need to do this in a new closure with those values locally defined.
The text was updated successfully, but these errors were encountered: