tightened up checking the STAR in multiplicativeExpression. Possible source of
a NPE reported by Lars.
This commit is contained in:
parent
d16d3f310d
commit
e3c3cdcea3
|
|
@ -750,7 +750,7 @@ additiveExpression
|
|||
|
||||
// multiplication/division/modulo (level 2)
|
||||
multiplicativeExpression
|
||||
: unaryExpression ((s:STAR^ | DIV^ | MOD^ ) {ver.verifyWSAround(s.getLine(), s.getColumn() + 1, s.getText());} unaryExpression)*
|
||||
: unaryExpression ((s:STAR^ {ver.verifyWSAround(s.getLine(), s.getColumn() + 1, s.getText());} | DIV^ | MOD^ ) unaryExpression)*
|
||||
;
|
||||
|
||||
unaryExpression
|
||||
|
|
|
|||
Loading…
Reference in New Issue