Closed ono-max closed 1 year ago
Perhaps there should be a special case for the most common values like:
true
/false
/nil
So you can have #class
when it's useless, but not have it spam for all "scalar" values
I implemented this in https://github.com/ruby/debug/pull/1004/files, with a few improvements:
⋁ a: 1
will now just be a: 1
)#class
when it helps.I would love to hear your feedback!
discuss on #1004 !
We can hide the #class item for each object by setting true in hideClassItem.
Closes https://github.com/ruby/vscode-rdbg/issues/37.
Before
After