Skip to content

Commit bfd7880

Browse files
committed
Update test refs
1 parent 40fe548 commit bfd7880

File tree

1 file changed

+10
-12
lines changed
  • ecmascript/transforms/proposal/tests/private-in-object/to-native-fields/class-expression-in-default-param

1 file changed

+10
-12
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
(x = (() => {
2-
var _fooBrandCheck;
3-
4-
return _fooBrandCheck = /*#__PURE__*/new WeakSet(), class {
5-
#foo = void _fooBrandCheck.add(this);
6-
7-
test(other) {
8-
return _fooBrandCheck.has(other);
9-
}
10-
11-
};
12-
})()) => {};
1+
(x = (()=>{
2+
var _brand_check_foo;
3+
return _brand_check_foo = new WeakSet(), class {
4+
#foo = void _brand_check_foo.add(this);
5+
test(other) {
6+
return _brand_check_foo.has(other);
7+
}
8+
};
9+
})())=>{
10+
};

0 commit comments

Comments
 (0)