27 lines
470 B
JavaScript
27 lines
470 B
JavaScript
var Foo =
|
|
/*#__PURE__*/
|
|
function () {
|
|
"use strict";
|
|
|
|
function Foo() {
|
|
babelHelpers.classCallCheck(this, Foo);
|
|
}
|
|
|
|
babelHelpers.createClass(Foo, [{
|
|
key: "test",
|
|
value: function test(x) {
|
|
return babelHelpers.classPrivateFieldLooseBase(Foo, _foo)[_foo](x);
|
|
}
|
|
}]);
|
|
return Foo;
|
|
}();
|
|
|
|
var _foo = babelHelpers.classPrivateFieldLooseKey("foo");
|
|
|
|
Object.defineProperty(Foo, _foo, {
|
|
writable: true,
|
|
value: function (x) {
|
|
return x;
|
|
}
|
|
});
|