2021-04-28 18:25:17 +02:00

25 lines
366 B
JavaScript

var _bar = /*#__PURE__*/new WeakMap();
class Foo {
constructor() {
_bar.set(this, {
writable: true,
value: "bar"
});
}
static test() {
return babelHelpers.classStaticPrivateFieldSpecGet(Foo, Foo, _foo);
}
test() {
return babelHelpers.classPrivateFieldGet(this, _bar);
}
}
var _foo = {
writable: true,
value: "foo"
};