Collapse proto Point into the one kind of use case, utf-16 coords

Co-Authored-By: Max Brunsfeld <max@zed.dev>
This commit is contained in:
Julia 2022-11-23 13:28:44 -05:00
parent b58ae8bdd7
commit a666ca3e40
2 changed files with 7 additions and 10 deletions

View file

@ -412,8 +412,10 @@ message Symbol {
string name = 4;
int32 kind = 5;
string path = 6;
UnclippedPoint start = 7;
UnclippedPoint end = 8;
// Cannot use generate anchors for unopend files,
// so we are forced to use point coords instead
PointUtf16 start = 7;
PointUtf16 end = 8;
bytes signature = 9;
}
@ -1042,12 +1044,7 @@ message Range {
uint64 end = 2;
}
message Point {
uint32 row = 1;
uint32 column = 2;
}
message UnclippedPoint {
message PointUtf16 {
uint32 row = 1;
uint32 column = 2;
}