Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hyf0 committed Jan 3, 2023
1 parent fb74fd6 commit a40a3a1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crates/swc/tests/tsc-references/for-of53.1.normal.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//// [for-of53.ts]
for (let v of []){
for (let v1 of []){
var v;
}
2 changes: 1 addition & 1 deletion crates/swc/tests/tsc-references/for-of54.1.normal.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//// [for-of54.ts]
for (let v of []){
for (let v1 of []){
var v = 0;
}
6 changes: 3 additions & 3 deletions crates/swc/tests/tsc-references/objectRestForOf.2.minified.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ let array, xx;
import _object_spread from "@swc/helpers/src/_object_spread.mjs";
import _object_spread_props from "@swc/helpers/src/_object_spread_props.mjs";
import _object_without_properties from "@swc/helpers/src/_object_without_properties.mjs";
for (let _ref of array){
var _ref, { x } = _ref;
_object_without_properties(_ref, [
for (let _ref1 of array){
var _ref, { x } = _ref1;
_object_without_properties(_ref1, [
"x"
]);
}
Expand Down

0 comments on commit a40a3a1

Please sign in to comment.