24 lines
894 B
JavaScript

"use strict";
var _createClass = (function () { function defineProperties(target, props) { for (var key in props) { var prop = props[key]; prop.configurable = true; if (prop.value) prop.writable = true; } Object.defineProperties(target, props); } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };
var Test = (function () {
var _Test = function Test() {
_classCallCheck(this, _Test);
};
_createClass(_Test, {
bar: {
get: function () {
throw new Error("wow");
}
}
});
return _Test;
})();
var test = new Test();
test.bar;