Commits
Click on a commit to change the comparison rangeperf(semantic): reduce `AstNodeId` to `u32` (#4264)
`AstNodeId` was a `usize`. This seems excessive.
Parser has a limit on size of a JS file of 4 GiB. While it is *possible* for a JS file of that size to create an AST with more than `1 << 32` (~4 billion) AST nodes, that would be insanely large.
So make `AstNodeId` `u32` instead.1 year ago
by overlookmotel