kiddkai / atom-node-debugger

A Nodejs Debugger For Atom
MIT License
265 stars 75 forks source link

Indicate string e.g. using quotes #206

Closed Redsandro closed 7 years ago

Redsandro commented 7 years ago

Single value variables have no type indication:

number: 2345
string: 2345

If strings in the debugger explorer can have quotes, we can distinguish between types. E.g.:

number: 2345
string: "2345"

Alternatively, always show type:

number (Number): 2345
string (String): 2345
collection (Set): {} // #205 ;)
codecontemplator commented 7 years ago

Good feedback. Thanks!

codecontemplator commented 7 years ago

Fixed

Redsandro commented 7 years ago

Thank you! :+1: