开发者

Catching errors in ANTLR and finding parent

I have found out that I can catch errors during parsing by overwriting displayRecognitionError, but how do I find the parent "node" of this error?

ex. if I have the grammar: prog: stat expr; stat: STRING; expr: INTEGER;

And give it the input "abc def".

Then I will get an error at "def" which should be an integer. At this point I then want to get the parent which is "expr" (since it fails inside the INTEGER part) and it's parent "prog". Kind of like printing stack trace in java.

I tried to look at the node from RecognitionException parsed to displayRecognitionError, but it is null, and using Com开发者_StackOverflowmonErrorNode the parent is null.

Should I maybe take a completely different approach?


CommonTree has:

/** Who is the parent node of this node; if null, implies node is root */
public CommonTree parent;

is that what you want?

Oh, you want the parent rule. I'd say use exceptions to catch errors where you want. add exception catch in rule where you want to trap expr errors then turn off default catching for other rules.

Use

@rulecatch { catch (RecognitionException re) { throw re; } }

and then add catches in rules where you want to catch.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜