21 lines
631 B
JavaScript
21 lines
631 B
JavaScript
"use strict";
|
|
|
|
var Test = (function (_Foo) {
|
|
function Test() {
|
|
babelHelpers.classCallCheck(this, Test);
|
|
|
|
babelHelpers.get(Object.getPrototypeOf(Test.prototype), "constructor", this).call(this);
|
|
babelHelpers.get(Object.getPrototypeOf(Test.prototype), "test", this).whatever();
|
|
babelHelpers.get(Object.getPrototypeOf(Test.prototype), "test", this).call(this);
|
|
}
|
|
|
|
babelHelpers.inherits(Test, _Foo);
|
|
babelHelpers.createClass(Test, null, {
|
|
test: {
|
|
value: function test() {
|
|
return babelHelpers.get(Object.getPrototypeOf(Test), "wow", this).call(this);
|
|
}
|
|
}
|
|
});
|
|
return Test;
|
|
})(Foo); |