mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
b02e189d07
swc_ecma_codegen: - Fix codegen of `U+0028` and `U+0029`. swc_ecma_minifier: - Implement MVP. swc_ecma_transforms_base: - `fixer`: Handle seq/await in rhs of for-of.
11 lines
280 B
JavaScript
11 lines
280 B
JavaScript
function foo(a) {
|
|
console.log(3);
|
|
console.log(2);
|
|
console.log(1);
|
|
console.log(1 & a);
|
|
}
|
|
function bar() {
|
|
console.log("0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789");
|
|
console.log("abcabcabcabcabc");
|
|
}
|