18 lines
235 B
JavaScript

class Cl {
constructor() {
_foo.add(this);
}
test() {
return babelHelpers.classPrivateMethodGet(this, _foo, _foo2).call(this);
}
}
var _foo = new WeakSet();
var _foo2 = function* _foo2() {
yield 2;
return 3;
};