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.
The text was updated successfully, but these errors were encountered:
Run:
gulp runtests-browser --t='fourslash/commentsClassMembers.ts' --browser=chrome
Expected: the test passes
Actual: "TypeError: Illegal invocation at getCompletionData (bundle.js:54363)"
This line is a call to
timestamp
inperformance.ts
In 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.now
orDate.now
. Node and Chrome are OK with ripping offDate.now
, so I suspect it'sperformance.now
.The text was updated successfully, but these errors were encountered: