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
If an object's toString() method returns null, the debugger watch windows do not show any values.
toString()
null
In this case, the debugger should fall back to using a non-virtual call to Object.toString() to obtain the string value associated with an instance.
Object.toString()
The text was updated successfully, but these errors were encountered:
Fix expression evaluation when toString() returns null
ffdf127
Fixes tunnelvisionlabs#29
sharwell
Successfully merging a pull request may close this issue.
If an object's
toString()
method returnsnull
, the debugger watch windows do not show any values.In this case, the debugger should fall back to using a non-virtual call to
Object.toString()
to obtain the string value associated with an instance.The text was updated successfully, but these errors were encountered: