Pregunta

I am currently using ANTLR4 in C# but I am facing a problem, I don't know how to get the the object/class IParseTree.

I find in C# the fully qualified name here is Antlr4.Runtime.Tree.IParseTree but how to get the object?

AntlrInputStream inputStream = new AntlrInputStream(sSpinTexte);
SpinParserLexer SpinLexer = new SpinParserLexer(inputStream);
CommonTokenStream commonTokenStream = new CommonTokenStream(SpinLexer);
SpinParserParser SpinParser = new SpinParserParser(commonTokenStream);
IParseTree tree = ?????

Can you please help?

¿Fue útil?

Solución

Thanks to the comment of Cv4, this is the code I used:

IParseTree tree = SpinParser.expr();
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top