mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
708efebac9
- fix comment line's end to be on same line.
9 lines
120 B
JavaScript
9 lines
120 B
JavaScript
switch(a){
|
|
case 1:
|
|
// optimize it
|
|
(function() {
|
|
b('c');
|
|
}());
|
|
b('d');
|
|
}
|