TypeScript/tests/cases/compiler/nestedThisContainer.ts
Brandon Bloom 49282d9fba
Nested this container (#36495)
* Add nestedThisContainer test

* Fix #36492
2020-01-29 09:35:23 -08:00

14 lines
177 B
TypeScript

// @noImplicitThis:true
type Foo = any;
const foo: Foo = {};
foo.bar = function () {
const self: Foo = this;
};
foo.zab = (function () {
const self: Foo = this;
});