support parenthesis in expressions

it needs to be suported in the bytecode, to let us print the expressions
properly
This commit is contained in:
Geoffroy Couprie 2021-01-26 10:52:39 +01:00
parent fea8c3327f
commit fedca762f9

View File

@ -295,6 +295,7 @@ message Op {
message OpUnary {
enum Kind {
Negate = 0;
Parens = 1;
}
required Kind kind = 1;