We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 936fde7 commit 909139cCopy full SHA for 909139c
parser_test.go
@@ -7,6 +7,7 @@ func TestParse(t *testing.T) {
7
src string
8
expected string
9
}{
10
+ {"=10%", "UnaryExpr(Operator: %, Operand: LiteralExpr(Value: 10))"},
11
{"=A1^B1", "BinaryExpr(Left: CellExpr(A1), Operator: ^, Right: CellExpr(B1))"},
12
{"=A1&B1", "BinaryExpr(Left: CellExpr(A1), Operator: &, Right: CellExpr(B1))"},
13
{"=1<>2", "BinaryExpr(Left: LiteralExpr(Value: 1), Operator: <>, Right: LiteralExpr(Value: 2))"},
0 commit comments