20 lines
426 B
JavaScript
20 lines
426 B
JavaScript
"use strict";
|
|
|
|
var Child = function (_Parent) {
|
|
babelHelpers.inherits(Child, _Parent);
|
|
|
|
function Child() {
|
|
babelHelpers.classCallCheck(this, Child);
|
|
|
|
var _this = babelHelpers.possibleConstructorReturn(this, Object.getPrototypeOf(Child).call(this));
|
|
|
|
_this.scopedFunctionWithThis = function () {
|
|
_this.name = {};
|
|
};
|
|
|
|
return _this;
|
|
}
|
|
|
|
return Child;
|
|
}(Parent);
|