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 909139c commit 3ec1590Copy full SHA for 3ec1590
parser_test.go
@@ -7,6 +7,7 @@ func TestParse(t *testing.T) {
7
src string
8
expected string
9
}{
10
+ {"=-A1", "UnaryExpr(Operator: -, Operand: CellExpr(A1))"},
11
{"=10%", "UnaryExpr(Operator: %, Operand: LiteralExpr(Value: 10))"},
12
{"=A1^B1", "BinaryExpr(Left: CellExpr(A1), Operator: ^, Right: CellExpr(B1))"},
13
{"=A1&B1", "BinaryExpr(Left: CellExpr(A1), Operator: &, Right: CellExpr(B1))"},
0 commit comments