Commits
Click on a commit to change the comparison rangeperf(sourcemap): reduce string copying in `ConcatSourceMapBuilder` (#4638)
Clone `Arc<str>`s for source text instead of creating new `Arc<str>`s and copying the string data.
For the shorter strings (names and source filenames) it's cheaper to create a new `Arc<str>` than to clone, presumably because of the overhead of atomic operations involved in `Arc::clone`.1 year ago
by overlookmotel