DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / baselines / reference / thisKeyword.js
12345678910
//// [thisKeyword.ts] module foo { this.bar = 4; } //// [thisKeyword.js] var foo; (function (foo) { this.bar = 4; })(foo || (foo = {}));