Ken Domino
Ken Domino
Compiles without any errors for me, Msys2/Win10. What is your Go version? $ make java -jar c:/users/kenne/downloads/antlr-4.9.2-complete.jar -encoding utf-8 -Dlanguage=Go -o parser -lib parser parser/SmaliLexer.g4 java -jar c:/users/kenne/downloads/antlr-4.9.2-complete.jar -encoding utf-8...
Likely a "symbol conflict" in the grammar with the target.
> Is it possible to automatically fix this conflict for antlr? There's code to bypass these conflicts, but the list of conflicting symbols is hard-coded (at least I think it...
> Is it possible to add extra conflicting symbols from user side? My understanding is that it is a static list, no way to add to the list, or add...
* You don't have a rule "r" in your grammar. You have a "stateGrammar" rule--that's it. So, the parser cannot start. * Your rule for `WS` is messed up, currently...
``` $ java org.antlr.v4.Tool Expr.g4 Error: Could not find or load main class org.antlr.v4.Tool Caused by: java.lang.ClassNotFoundException: org.antlr.v4.Tool ``` Why are you running (or trying to run) the Antlr tool...
I think the numbers appended at the end of the constant declaration is likely because there are some missing token definitions, or that they are out of order from the...
Are you saying an expression of `a_function()"a string"` is syntactically legal, but `a_function() "a string"` is not?
This PHP grammar is kind of a mess. We should have an automated way to modify the grammar to make it work with Python3, and fit it into the build....
@dkazantzas Thank you so much! I'll peek at the PR to make sure it's working.