Sebastian McKenzie 5bad458b09 Fix tests
2014-12-05 23:05:20 +11:00

22 lines
415 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) {}
}
});
return A;
})();