2014-12-10 21:11:13 +11:00

23 lines
439 B
JavaScript

"use strict";
var _classProps = function (child, staticProps, instanceProps) {
if (staticProps) Object.defineProperties(child, staticProps);
if (instanceProps) Object.defineProperties(child.prototype, instanceProps);
};
var A = (function () {
var A = function A() {};
A.a = function () {};
_classProps(A, {
b: {
get: function () {},
set: function (b) {},
enumerable: true
}
});
return A;
})();