Skip to content

Commit

Permalink
update test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Nov 4, 2022
1 parent 2bdadfd commit 6e2b0ef
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
@@ -0,0 +1 @@
EXECUTOR TIMEOUT
Expand Up @@ -8,8 +8,8 @@ new (_x = /*#__PURE__*/new WeakMap(), _m = /*#__PURE__*/new WeakSet(), (_temp =
writable: true,
value: void 0
}), babelHelpers.defineProperty(this, "x", void 0)), (() => {
hasX = o => _x.has(o);
hasM = o => _m.has(o);
hasX = o => _x.has(babelHelpers.checkInRHS(o));
hasM = o => _m.has(babelHelpers.checkInRHS(o));
})(), _initClass();
}
}, (() => {
Expand Down
Expand Up @@ -8,8 +8,8 @@ new (_x = /*#__PURE__*/new WeakMap(), _m = /*#__PURE__*/new WeakSet(), (_temp =
writable: true,
value: void 0
}), babelHelpers.defineProperty(this, "x", void 0)), (() => {
hasX = o => _x.has(o);
hasM = o => _m.has(o);
hasX = o => _x.has(babelHelpers.checkInRHS(o));
hasM = o => _m.has(babelHelpers.checkInRHS(o));
})(), _initClass();
}
}, (() => {
Expand Down
Expand Up @@ -6,5 +6,5 @@ var _selfBrandCheck = /*#__PURE__*/new WeakSet();
// The class declaration and the static private property should not be transpiled
class C {
static #self = (_selfBrandCheck.add(this), C);
static #_ = C.#self ?? (C.#self = _selfBrandCheck.has(C === null || C === void 0 ? void 0 : C.#self));
static #_ = C.#self ?? (C.#self = _selfBrandCheck.has(babelHelpers.checkInRHS(C === null || C === void 0 ? void 0 : C.#self)));
}
@@ -1,5 +1,5 @@
var _fooBrandCheck = /*#__PURE__*/new WeakSet();
class A {
#foo = void _fooBrandCheck.add(this);
static #_ = register(A, _fooBrandCheck.has(A));
static #_ = register(A, _fooBrandCheck.has(babelHelpers.checkInRHS(A)));
}
Expand Up @@ -7,4 +7,4 @@ class A {
});
}
}
register(A, _foo.has(A));
register(A, _foo.has(babelHelpers.checkInRHS(A)));

0 comments on commit 6e2b0ef

Please sign in to comment.