antlr4 - 得到规则上下文的左右兄弟

时间:2015-02-11 15:02:40

标签: java antlr antlr4

一个简单的问题,我在API文档中找不到有用的东西:有没有办法获得ParserRuleContext的左右兄弟?

说我的.g4

identifiers : identifier (',' identifier)*;

处理IdentifierContext时,我想获得左侧和右侧IdentifierContext的引用。

3 个答案:

答案 0 :(得分:1)

我找到了一种相关的getRightSibling()方法here

这是我的C#端口:

    /// <summary>
    /// Returns the right sibling of the parse tree node.
    /// </summary>
    /// <param name="context">A node.</param>
    /// <returns>Right sibling of a node, or null if no sibling is found.</returns>
    public static IParseTree GetRightSibling(this ParserRuleContext context)
    {
        int index = GetNodeIndex(context);

        return index >= 0 && index < context.Parent.ChildCount - 1 
            ? context.Parent.GetChild(index + 1) 
            : null;
    }

    /// <summary>
    /// Returns the node's index with in its parent's children array.
    /// </summary>
    /// <param name="context">A child node.</param>
    /// <returns>Node's index or -1 if node is null or doesn't have a parent.</returns>
    public static int GetNodeIndex(this ParserRuleContext context)
    {
        RuleContext parent = context?.Parent;

        if (parent == null)
            return -1;

        for (int i = 0; i < parent.ChildCount; i++) {
            if (parent.GetChild(i) == context) {
                return i;
            }
        }

        return -1;
    }

答案 1 :(得分:0)

  

[...]有没有办法获得ParserRuleContext的左右兄弟?

不,唉,没有。

答案 2 :(得分:0)

要获取当前子节点的索引:

int indexOfCurrentChildNode = ctx.getParent().children.indexOf(ctx);

然后您可以通过以下方式获得其右/左同级物:

ctx.parent.getChild(indexOfCurrentChildNode +/- 1)