TypeScript/tests/cases/conformance/types/thisType/contextualThisTypeInJavascript.ts
2017-07-18 10:01:22 -07:00

14 lines
236 B
TypeScript

// @allowJs: true
// @checkJs: true
// @noEmit: true
// @Filename: context.js
const obj = {
prop: 2,
method() {
this;
this.prop;
this.method;
this.unknown; // ok, obj has a string indexer
}
}