mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +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
115 B
JavaScript
10 lines
115 B
JavaScript
switch(1){
|
|
case 2:
|
|
a();
|
|
case 3 + 4:
|
|
b();
|
|
break;
|
|
case 5 + 6 + 7:
|
|
c();
|
|
}
|