You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
java.lang.IllegalStateException: Expecting start of a comment after '(' but could not find '*'!
at net.nextencia.rrdiagram.grammar.model.BNFToGrammar.convert(BNFToGrammar.java:320)
at net.nextencia.rrdiagram.grammar.model.BNFToGrammar.convert(BNFToGrammar.java:285)
This was a silly error of the form: cond1 && cond2 && a ==null? b == null: a.equals(b)
which should have been: cond1 && cond2 && (a ==null? b == null: a.equals(b))
Just to mention that there was a bug which got fixed with that rule, but the original description of the problem did not match my observations with the latest code I used.
This rule causes a parsing error:
It can be reproduced with this test:
The text was updated successfully, but these errors were encountered: