2014-10-11 22:33:08 +11:00

13 lines
199 B
JavaScript

var Test = function () {
function Test() {
}
Object.defineProperties(Test.prototype, {
test: {
set: function (val) {
this._test = val;
}
}
});
return Test;
}();