import org.antlr.v4.runtime.*;
import org.antlr.v4.runtime.tree.*;
public class Test{
public static void main(String[] args) throws Exception{
ANTLRInputStream input = new ANTLRInputStream(System.in);
ArrayInitLexer lexer = new ArrayInitLexer(input);
CommonTokenStream tokens = new CommonTokenStream(lexer);
ArrayInitParser parser = new ArrayInitParser(tokens);
ParseTree tree = parser.init();
System.out.println(tree.toStringTree(parser));
}
}
I have found the official API (http://www.antlr.org/api/Java/index.html) , but I still don't know how to solve it.
Their official ANTLR site recommends using the CharsStreams class as from version 4.7 ANTRLInputStream is deprecated.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With