mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
Fix #758 Change LocationLink's targetUri to be a DocumentUri
The target URI of a LocationLink should be a URI and not just any random string. Signed-off-by: Remy Suen <remy.suen@gmail.com>
This commit is contained in:
parent
56e4fc292c
commit
92ac0ebbfc
1 changed files with 1 additions and 1 deletions
|
|
@ -309,7 +309,7 @@ interface LocationLink {
|
|||
/**
|
||||
* The target resource identifier of this link.
|
||||
*/
|
||||
targetUri: string;
|
||||
targetUri: DocumentUri;
|
||||
|
||||
/**
|
||||
* The full target range of this link. If the target for example is a symbol then target range is the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue