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
Currently the DiagnosticRelatedInformation.Location property is a string. I think this is not correct in sense of Language Server Protocol. I think they expect Location to be an Location object with URI and Range.
I tried to pass a string but VS Code then displays related messages as:
undefined(undefined, undefined): message
The text was updated successfully, but these errors were encountered:
…nformation (#176)
* return a Location object instead of a string for the location of a diagnostic related information
* add test for related information with diagnostics
Currently the
DiagnosticRelatedInformation.Location
property is astring
. I think this is not correct in sense of Language Server Protocol. I think they expectLocation
to be anLocation
object with URI and Range.I tried to pass a string but VS Code then displays related messages as:
undefined(undefined, undefined): message
The text was updated successfully, but these errors were encountered: