When I'm try to compile simple code an error occurs:
D:\Flash\ANTLRTest\src\Main.as(56): col: 11 Error: Call to a possibly
undefined method entry_rule through a reference with static type
GParser.
Code:
52 public function parseInput(input:String):void
53 {
54 lexer.charStream = new ANTLRStringStream(input);
55 parser.tokenStream = new CommonTokenStream(lexer);
56 parser.entry_rule();
57 }
Here http://www.antlr.org/wiki/display/ANTLR3/Antlr3ActionScriptTarget
it seems to be work. How it's can be?
--
You received this message because you are subscribed to the Google Groups
"il-antlr-interest" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/il-antlr-interest?hl=en.