36 lines
607 B
JavaScript
36 lines
607 B
JavaScript
var Test = function Test() {
|
|
"use strict";
|
|
|
|
babelHelpers.classCallCheck(this, Test);
|
|
this.state = "test";
|
|
};
|
|
|
|
var Foo = /*#__PURE__*/function (_Bar) {
|
|
"use strict";
|
|
|
|
babelHelpers.inherits(Foo, _Bar);
|
|
|
|
var _super = babelHelpers.createSuper(Foo);
|
|
|
|
function Foo() {
|
|
var _this;
|
|
|
|
babelHelpers.classCallCheck(this, Foo);
|
|
_this = _super.call(this);
|
|
_this.state = "test";
|
|
return _this;
|
|
}
|
|
|
|
return Foo;
|
|
}(Bar);
|
|
|
|
var ConstructorScoping = function ConstructorScoping() {
|
|
"use strict";
|
|
|
|
babelHelpers.classCallCheck(this, ConstructorScoping);
|
|
var bar;
|
|
{
|
|
var _bar;
|
|
}
|
|
};
|