first commit

This commit is contained in:
Sebastian McKenzie
2014-09-28 23:39:22 +10:00
commit c97696c224
167 changed files with 2007 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class Test {
set test(val) {
this._test = val;
}
}

View File

@@ -0,0 +1,12 @@
var Test = function () {
function Test() {
}
Object.defineProperties(Test.prototype, {
test: {
set: function (val) {
this._test = val;
}
}
});
return Test;
}();