You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
letcallback=()=>1;classA{constructor(publicn: number){// Should error, but doesn'tcallback=this.getN;}getN(){returnthis.n;}}newA(2);// Runtime error: Attempt to index nil with 'n'callback();
Also happens if callback is a property access, for example MarketplaceService.ProcessReceipt = this.processProduct
The text was updated successfully, but these errors were encountered:
Playground
Also happens if
callback
is a property access, for exampleMarketplaceService.ProcessReceipt = this.processProduct
The text was updated successfully, but these errors were encountered: