Skip to content

Commit

Permalink
Update test refs
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 18, 2022
1 parent 94310ed commit ce267b4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
@@ -1,5 +1,6 @@
//// [assignmentToParenthesizedIdentifiers.ts]
var M, M2, E;
import _class_call_check from "@swc/helpers/src/_class_call_check.mjs";
!function(M) {
var y;
M.y = y;
Expand Down
1 change: 1 addition & 0 deletions crates/swc/tests/tsc-references/assignments.2.minified.js
@@ -1,5 +1,6 @@
//// [assignments.ts]
var E;
import _class_call_check from "@swc/helpers/src/_class_call_check.mjs";
M = null, function(E) {
E[E.A = 0] = "A";
}(E || (E = {})), (E = null).A = null, I = null;
@@ -1,5 +1,6 @@
//// [invalidUndefinedAssignments.ts]
var x, E, M;
import _class_call_check from "@swc/helpers/src/_class_call_check.mjs";
!function(E) {
E[E.A = 0] = "A";
}(E || (E = {})), (E = x).A = x, I = x, (M || (M = {})).x = 1, M = x;
@@ -1,5 +1,6 @@
//// [validNullAssignments.ts]
var E, M;
import _class_call_check from "@swc/helpers/src/_class_call_check.mjs";
!function(E) {
E[E.A = 0] = "A";
}(E || (E = {})), E.A = null, I = null, (M || (M = {})).x = 1, M = null;

0 comments on commit ce267b4

Please sign in to comment.