mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 21:21:31 +03:00
1b28766c26
swc_ecma_parser: - parser now take comments by reference
10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
for(;;){
|
|
if (a) {
|
|
if (b) {
|
|
continue;
|
|
}
|
|
c(); // This should not removed and translation should not occur.
|
|
|
|
}
|
|
}
|