atom-node-debugger
atom-node-debugger copied to clipboard
Long arrays choke debugger on expand
trafficstars
Have an array with thousands of values, and the debugger will take a long time freezing.
Debuggers like Eclipse divide this in groups of 100 for that purpose:
v testArray: Array
length: 3000
> [0..99]
> [100..199]
> [200..299]
etc
Good idea.