[Yunq] Add parse/serialize for i64 field along with tests.

This commit is contained in:
Drew Galbraith 2024-01-17 13:57:02 -08:00
parent e83720e67c
commit a1f0197e83
9 changed files with 187 additions and 2 deletions

View file

@ -3,3 +3,13 @@ package ex;
message Basic {
u64 field;
}
message Types {
u64 unsigned_int;
i64 signed_int;
string str;
}
message Cap {
capability cap;
}