开发者

ANTLR, lack of method in C# target

I generated the C# code from tree grammar using ANTLR and I cannot find the method downup(). Is the sequence of calls:

topdown();
bottomup();

equivalent to downup() method? Why the method does exist in Java but not in C#? And why do they (the authors) advise to override the following methods:

protected override void Topdown()开发者_如何学Python { topdown(); }
protected override void Bottomup() { bottomup(); }

whereas C# says there are no such methods to override?

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜