Files
babel/packages/babel-plugin-proposal-class-properties/test/fixtures/private/instance-undefined/output.js
2020-05-30 22:38:15 +02:00

13 lines
180 B
JavaScript

var _bar = new WeakMap();
var Foo = function Foo() {
"use strict";
babelHelpers.classCallCheck(this, Foo);
_bar.set(this, {
writable: true,
value: void 0
});
};