Closed
Description
Testing #9684
const arr = new Array(Math.pow(10, 9));
console.log(arr);
- Set breakpoint on line
2
. - Start debug
- Expand the
arr
local variable
VS Code will eventually crash. This happens because, I'm guessing, the tree will show 10^7
items in the tree, since the page size is fixed to 100.
Pages should be recursive. Expanding arr
, in this case, should show a set maximum number of pages (eg 1000); and each page, when expanded, would contain further pages. Eg:
[0...10000]
[0...100]
0
1
- ...
[100...200]
100
101
- ...
- ...
- ...