output.js 397 B

12345678910111213141516171819
  1. function classFactory() {
  2. var _bar, _foo;
  3. var Foo = function Foo() {
  4. babelHelpers.classCallCheck(this, Foo);
  5. Object.defineProperty(this, _foo, {
  6. writable: true,
  7. value: "foo"
  8. });
  9. };
  10. _bar = babelHelpers.classPrivateFieldKey("bar");
  11. Object.defineProperty(Foo, _bar, {
  12. writable: true,
  13. value: "bar"
  14. });
  15. _foo = babelHelpers.classPrivateFieldKey("foo");
  16. }