Using the Lexer and the Parser from here:
https://raw.githubusercontent.com/antlr/grammars-v4/master/java/JavaLexer.g4
https://raw.githubusercontent.com/antlr/grammars-v4/master/java/JavaParser.g4
with antlr-4.6 to generate Python3 targets
java -jar ./antlr-4.6-complete.jar -Dlanguage=Python3 ./JavaLexer.g4
java -jar ./antlr-4.6-complete.jar -Dlanguage=Python3 ./JavaParser.g4
However, im unable to run the compilationUnit() method on the generated parser. It errors out saying
ipdb> parser.compilationUnit()
File "/home/sviyer/onmt-fresh/java/JavaParser.py", line 1063, in compilationUnit
localctx = JavaParser.CompilationUnitContext(self, self._ctx, self.state)
File "/home/sviyer/.conda/envs/allennlp/lib/python3.6/site-packages/antlr4/error/ErrorStrategy.py", line 223, in sync
raise InputMismatchException(recognizer)
antlr4.error.Errors.InputMismatchException: None
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "TestAntlr.py", line 13, in <module>
parser.compilationUnit()
File "/home/sviyer/onmt-fresh/java/JavaParser.py", line 1063, in compilationUnit
localctx = JavaParser.CompilationUnitContext(self, self._ctx, self.state)
File "/home/sviyer/.conda/envs/allennlp/lib/python3.6/site-packages/antlr4/error/ErrorStrategy.py", line 126, in reportError
self.reportInputMismatch(recognizer, e)
File "/home/sviyer/.conda/envs/allennlp/lib/python3.6/site-packages/antlr4/error/ErrorStrategy.py", line 266, in reportInputMismatch
+ " expecting " + e.getExpectedTokens().toString(recognizer.literalNames, recognizer.symbolicNames)
File "/home/sviyer/.conda/envs/allennlp/lib/python3.6/site-packages/antlr4/error/ErrorStrategy.py", line 522, in getTokenErrorDisplay
s = t.text
AttributeError: 'int' object has no attribute 'text'
The Lexer works fine though and the parser parses it. My code is:
stream = antlr4.InputStream(code)
lexer = JavaLexer(stream)
toks = antlr4.CommonTokenStream(lexer)
parser = JavaParser(stream)