Repo
Try to display the representation of an object with lots of properties in the Node.js interactive window
> var a = []
undefined
>
> for (var i = 0; i < 1000; ++i) a[i] = i;
999
> a // hang here for about 5 sec
[ 0,
1,
2,
...,
999]
Expected
Prints the representation without hanging.
Actual
VS hangs for about 5 seconds and then prints the result. The entire application appears to be hanging as the window is marked as "(Not Responding)".
Repo
Try to display the representation of an object with lots of properties in the Node.js interactive window
Expected
Prints the representation without hanging.
Actual
VS hangs for about 5 seconds and then prints the result. The entire application appears to be hanging as the window is marked as "(Not Responding)".