File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,11 @@ Allowed expressions must follow the following grammar:
3636Expression = ([{"("}] SubExpr [{Operator [{"("}] SubExpr [{")"}]}] [{")"}] | {["("] ["{"] List [{";" List}] ["}"] [")"]})
3737SubExpr = Token [{Operator Token}]
3838Token = [{Unary}] Argument [(Operator | Function) ["("] [{Unary}] [Argument] [")"]]
39- Argument = (List | Variable | Operand)
39+ Argument = (List | Variable | Operand | Literal )
4040List = "{" ["{"] SubExpr [{";" SubExpr}] ["}"] "}"
4141Unary = "-" | "+" | ~
42- Operand = ({Digit} ["."] [{Digit}] ["E"("-" | "+"){Digit}] | (True | False) | "'"Alphabet"'")
42+ Literal = (Operand | "'"Alphabet"'")
43+ Operand = ({Digit} ["."] [{Digit}] ["E"("-" | "+"){Digit}] | (True | False))
4344Variable = Alphabet [{Decimal}] [{(Digit | Alphabet)}]
4445Alphabet = "A-Z" | "a-z"
4546Decimal = "."
You can’t perform that action at this time.
0 commit comments