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
fixes the bug. Searching indicates that this error happens when you try to call an function without providing the expected this, like performance.now or Date.now. Node and Chrome are OK with ripping off Date.now, so I suspect it's performance.now.
Run:
gulp runtests-browser --t='fourslash/commentsClassMembers.ts' --browser=chromeExpected: the test passes
Actual: "TypeError: Illegal invocation at getCompletionData (bundle.js:54363)"
This line is a call to
timestampinperformance.tsIn performance.ts, changing this line from
fixes the bug. Searching indicates that this error happens when you try to call an function without providing the expected
this, likeperformance.noworDate.now. Node and Chrome are OK with ripping offDate.now, so I suspect it'sperformance.now.