We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
this
let o = { f: function () { this./**/ } }
Expected: Intellisense shows 'f' in the list Actual: Intellisense shows nothing because this: any.
this: any
Note that this similar code already works:
let o = { f() { this./**/ } }