microsoft/TypeScript (original) (raw)
let o = { f: function () { this./**/ } }
Expected: Intellisense shows 'f' in the list
Actual: Intellisense shows nothing because this: any
.
Note that this similar code already works:
let o = { f() { this./**/ } }