mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 21:21:31 +03:00
32b3bbd50b
swc_ecma_codegen: - Emit only ascii characters. (#1187, #1188)
7 lines
93 B
JavaScript
7 lines
93 B
JavaScript
a["b"] = "c";
|
|
a["if"] = "if";
|
|
a["*"] = "d";
|
|
a["\u{eb3}"] = "e";
|
|
a[""] = "f";
|
|
a["1_1"] = "b";
|