14 lines
428 B
JavaScript
14 lines
428 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);
|
|
babelHelpers.get(Object.getPrototypeOf(Test.prototype), "test", this).whatever;
|
|
}
|
|
|
|
babelHelpers.inherits(Test, _Foo);
|
|
return Test;
|
|
})(Foo); |