1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
//// [lambdaPropSelf.ts]
declare var ko: any;
class Person {
children: string[];
constructor (public name: string, children: string[]) {
this.children = ko.observableArray(children);
}
addChild = () => this.children.push("New child");
}
class T {
fo() {
var x = this;
}
}
module M {
var x = this;
}
//// [lambdaPropSelf.js]
var Person = /** @class */ (function () {
function Person(name, children) {
var _this = this;
this.name = name;
this.addChild = function () { return _this.children.push("New child"); };
this.children = ko.observableArray(children);
}
return Person;
}());
var T = /** @class */ (function () {
function T() {
}
T.prototype.fo = function () {
var x = this;
};
return T;
}());
var M;
(function (M) {
var x = this;
})(M || (M = {}));
|