Fixup compile errors

This commit is contained in:
Julia 2022-11-22 02:49:47 -05:00
parent 8c75df30cb
commit e51cbf67ab
11 changed files with 83 additions and 103 deletions

View file

@ -412,8 +412,8 @@ message Symbol {
string name = 4;
int32 kind = 5;
string path = 6;
Point start = 7;
Point end = 8;
UnclippedPoint start = 7;
UnclippedPoint end = 8;
bytes signature = 9;
}
@ -1047,6 +1047,11 @@ message Point {
uint32 column = 2;
}
message UnclippedPoint {
uint32 row = 1;
uint32 column = 2;
}
message Nonce {
uint64 upper_half = 1;
uint64 lower_half = 2;