mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
6e028696a5
We buffer operations related to source map and make it fast using an assumption that the byte positions always increment while emitting a file.
10 lines
96 B
JavaScript
10 lines
96 B
JavaScript
function a(b = 1) {
|
|
}
|
|
function c(b = (2 + 3)) {
|
|
}
|
|
function d({ e } = {
|
|
}, [f] = [
|
|
4
|
|
]) {
|
|
}
|