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

13 lines
179 B
JavaScript

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