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
When I type add( or hit Ctrl+Space inside add(), I would expect to see (a: number, b: number): number pop up. However, it fails inside ParameterHintsModel.prototype.doTrigger on the line
When I pause it there, it shows that result exists and result.signatures exists (with the completion item I need!), but there is no result.value. Is this from the 0.18.0 update or am I missing something?
The text was updated successfully, but these errors were encountered:
Probably this issue: #1576 It's a result of monaco-typescript using an old version of monaco-editor-core. I already submitted a PR, let's hope it gets fixed soon.
Monaco@0.18.0
Chrome@76.0
Ubuntu@18.04.3
I have a function
When I type
add(
or hit Ctrl+Space insideadd()
, I would expect to see(a: number, b: number): number
pop up. However, it fails insideParameterHintsModel.prototype.doTrigger
on the lineWhen I pause it there, it shows that
result
exists andresult.signatures
exists (with the completion item I need!), but there is noresult.value
. Is this from the 0.18.0 update or am I missing something?The text was updated successfully, but these errors were encountered: