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
Allow to define a static per class, which can customize the way the debugger displays values. For example:
class Point { static var __debug_repr = "[$x,$y]"; public var x : Float; public var y : Float; }
The text was updated successfully, but these errors were encountered:
Why as a var, rather than a function that returns a String? The latter seems more flexible.
eval-debugger simply uses toString().
toString()
Sorry, something went wrong.
It's not very easy to call the VM... would require making all threads pause and create another thread that executes the code...
No branches or pull requests
Allow to define a static per class, which can customize the way the debugger displays values.
For example:
The text was updated successfully, but these errors were encountered: