44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
"use strict";
|
|
|
|
var _prototypeProperties = function (child, staticProps, instanceProps) {
|
|
if (staticProps) Object.defineProperties(child, staticProps);
|
|
if (instanceProps) Object.defineProperties(child.prototype, instanceProps);
|
|
};
|
|
|
|
var _inherits = function (subClass, superClass) {
|
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);
|
|
}
|
|
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
constructor: {
|
|
value: subClass,
|
|
enumerable: false,
|
|
writable: true,
|
|
configurable: true
|
|
}
|
|
});
|
|
if (superClass) subClass.__proto__ = superClass;
|
|
};
|
|
|
|
var Test = (function (Foo) {
|
|
function Test() {
|
|
Foo.prototype.test.whatever();
|
|
Foo.prototype.test.call(this);
|
|
}
|
|
|
|
_inherits(Test, Foo);
|
|
|
|
_prototypeProperties(Test, {
|
|
test: {
|
|
value: function () {
|
|
return Foo.wow.call(this);
|
|
},
|
|
writable: true,
|
|
enumerable: true,
|
|
configurable: true
|
|
}
|
|
});
|
|
|
|
return Test;
|
|
})(Foo);
|