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

@ -6064,11 +6064,11 @@ fn serialize_symbol(symbol: &Symbol) -> proto::Symbol {
path: symbol.path.path.to_string_lossy().to_string(),
name: symbol.name.clone(),
kind: unsafe { mem::transmute(symbol.kind) },
start: Some(proto::UnclippedPoint {
start: Some(proto::PointUtf16 {
row: symbol.range.start.0.row,
column: symbol.range.start.0.column,
}),
end: Some(proto::UnclippedPoint {
end: Some(proto::PointUtf16 {
row: symbol.range.end.0.row,
column: symbol.range.end.0.column,
}),

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;
}