I am using ANTLR 3 , I have a question is that How can i find the next expected token if any error is occurred in input . I have tried to override getErrorMessage(RecognitionException e, String[] tokenNames) of the Parser, I can get the error but i am not able to get What is next expected token . If anyone can help . Thanks in Advance.
|
|
That's not as easy as it sounds. And quite often, such information is not available. For example, your grammar can match parenthesized expressions like this: If your parser now tries to parse However, when it tries to parse So, there will only be a couple of occasions that will let you extract an expected token from an exception raised by the parser. In the bulk of the cases, you will need to do (a lot of hard) work to extract this info yourself. Creating meaningful error messages in your parser is not a trivial task! (at least, not compared to simply writing a grammar for a not too complicated language) I recommend going through ANTLR's API docs to see which exceptions are being thrown by ANTLR and feed your parser invalid input by purpose, and overriding
|
||||
|
|