missing schema update

This commit is contained in:
Geoffroy Couprie 2021-02-26 17:55:27 +01:00
parent 1c09f36934
commit e272bdd08b

View File

@ -296,6 +296,7 @@ message OpUnary {
enum Kind {
Negate = 0;
Parens = 1;
Length = 2;
}
required Kind kind = 1;
@ -318,6 +319,8 @@ message OpBinary {
Div = 12;
And = 13;
Or = 14;
Intersection = 15;
Union = 16;
}
required Kind kind = 1;