Working underline based on symbol origin

This commit is contained in:
Keith Simmons 2022-06-13 16:21:53 -07:00
parent 4286a9b564
commit 848445455d
11 changed files with 332 additions and 74 deletions

View file

@ -248,7 +248,7 @@ message GetDefinition {
}
message GetDefinitionResponse {
repeated Location locations = 1;
repeated LocationLink links = 1;
}
message GetReferences {
@ -279,6 +279,11 @@ message Location {
Anchor end = 3;
}
message LocationLink {
optional Location origin = 1;
Location target = 2;
}
message DocumentHighlight {
Kind kind = 1;
Anchor start = 2;