mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
7715c2626b
swc_ecma_transforms: - fix mis-referencing caused by destructuring (#404) - fix invalid code generated by comment on arrow functions (#406) - fix string concatation of template literal (#407) - hygiene: fix rewriting of object pattern - fix test module to prevent SIGILL - fix module import order (using IndexMap)
8 lines
110 B
JavaScript
8 lines
110 B
JavaScript
(function() {
|
|
throw 'a';
|
|
with (b); // This should be removed.
|
|
|
|
// This should be removed.
|
|
|
|
}());
|