output.js 673 B

123456789101112131415161718192021222324252627
  1. var Foo =
  2. /*#__PURE__*/
  3. function () {
  4. "use strict";
  5. function Foo() {
  6. babelHelpers.classCallCheck(this, Foo);
  7. Object.defineProperty(this, _foo, {
  8. writable: true,
  9. value: 0
  10. });
  11. }
  12. babelHelpers.createClass(Foo, [{
  13. key: "test",
  14. value: function test(other) {
  15. babelHelpers.classPrivateFieldLooseBase(this, _foo)[_foo] += 1;
  16. babelHelpers.classPrivateFieldLooseBase(this, _foo)[_foo] = 2;
  17. babelHelpers.classPrivateFieldLooseBase(other.obj, _foo)[_foo] += 1;
  18. babelHelpers.classPrivateFieldLooseBase(other.obj, _foo)[_foo] = 2;
  19. }
  20. }]);
  21. return Foo;
  22. }();
  23. var _foo = babelHelpers.classPrivateFieldLooseKey("foo");