ANTLR4语法中的N元运算符
N-ary operators in ANTLR4 grammar
我有一个解析布尔公式的语法:
expr: op=NOT right=expr #Not
| left=expr op=AND right=expr #And
| left=expr op=OR right=expr #Or
| left=expr op=XOR right=expr #Xor
| <assoc=right> left=expr op=IMPL right=expr #Implication
| <assoc=right> left=expr op=EQ right=expr #Equivalence
| boolean=BOOL #Boolean
| '(' content=expr+ ')' #Brackets
| atomic=ATOMIC #Atomic
;
BOOL : TRUE|FALSE;
NOT : ('!'|'not');
AND : ('&'|'and');
OR : ('|'|'or');
XOR : ('^'|'xor');
IMPL : '->';
EQ : '<->';
TRUE : ('True'|'true');
FALSE : ('False'|'false');
ATOMIC : [a-z]+([_]?[a-z]+)*;
WS : [ \t\n]+ -> skip; //Skip whitespaces
如何将 AND
、OR
和 XOR
更改为 n 元而不是二进制(以便这些运算符的子级处于同一级别)?我尝试用 expr (op=AND expr)+
替换 left=expr op=AND right=expr
,这并没有改变任何东西。
像这样的东西就可以了:
expr
: <assoc=right> expr IMPL expr
| <assoc=right> expr EQ expr
| xor_expr
;
xor_expr
: or_expr (XOR or_expr)*
;
or_expr
: and_expr (OR and_expr)*
;
and_expr
: unary (AND unary)*
;
unary
: NOT atom
| atom
;
atom
: BOOL
| '(' expr+ ')'
| ATOMIC
;
我有一个解析布尔公式的语法:
expr: op=NOT right=expr #Not
| left=expr op=AND right=expr #And
| left=expr op=OR right=expr #Or
| left=expr op=XOR right=expr #Xor
| <assoc=right> left=expr op=IMPL right=expr #Implication
| <assoc=right> left=expr op=EQ right=expr #Equivalence
| boolean=BOOL #Boolean
| '(' content=expr+ ')' #Brackets
| atomic=ATOMIC #Atomic
;
BOOL : TRUE|FALSE;
NOT : ('!'|'not');
AND : ('&'|'and');
OR : ('|'|'or');
XOR : ('^'|'xor');
IMPL : '->';
EQ : '<->';
TRUE : ('True'|'true');
FALSE : ('False'|'false');
ATOMIC : [a-z]+([_]?[a-z]+)*;
WS : [ \t\n]+ -> skip; //Skip whitespaces
如何将 AND
、OR
和 XOR
更改为 n 元而不是二进制(以便这些运算符的子级处于同一级别)?我尝试用 expr (op=AND expr)+
替换 left=expr op=AND right=expr
,这并没有改变任何东西。
像这样的东西就可以了:
expr
: <assoc=right> expr IMPL expr
| <assoc=right> expr EQ expr
| xor_expr
;
xor_expr
: or_expr (XOR or_expr)*
;
or_expr
: and_expr (OR and_expr)*
;
and_expr
: unary (AND unary)*
;
unary
: NOT atom
| atom
;
atom
: BOOL
| '(' expr+ ')'
| ATOMIC
;