當前位置: 首頁>>代碼示例>>Java>>正文


Java RuleContext.getChildCount方法代碼示例

本文整理匯總了Java中org.antlr.v4.runtime.RuleContext.getChildCount方法的典型用法代碼示例。如果您正苦於以下問題:Java RuleContext.getChildCount方法的具體用法?Java RuleContext.getChildCount怎麽用?Java RuleContext.getChildCount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.antlr.v4.runtime.RuleContext的用法示例。


在下文中一共展示了RuleContext.getChildCount方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getChildContextText

import org.antlr.v4.runtime.RuleContext; //導入方法依賴的package包/類
/**
 * Searches the children of the given context for a context of the given clazz
 * type and returns its Text Value. If there are multiple relevant child nodes,
 * we will return the text value for one of them at random.
 */
public String getChildContextText(RuleContext ctx) {

    if (ctx == null) {
        return "";
    }
    if (ctx instanceof TypeNameContext) {
        return ctx.getText();
    }

    String s = "";
    for (int i = 0; i < ctx.getChildCount(); i++) {
        if (!(ctx.getChild(i) instanceof TerminalNodeImpl)) {
            try {
                String t = getChildContextText((RuleContext) ctx.getChild(i));
                if (!t.isEmpty()) {
                    s += t + ",";
                }
            } catch (Exception e) {
                // do nothing
            }
        }
    }
    return s.replaceAll(",$", "");
}
 
開發者ID:Zir0-93,項目名稱:clarpse,代碼行數:30,代碼來源:GoLangTreeListener.java

示例2: findLeftSibling

import org.antlr.v4.runtime.RuleContext; //導入方法依賴的package包/類
private ParseTree findLeftSibling(RuleContext ctx) {
  RuleContext p = ctx.getParent();
  if(p!=null) {
    for(int i=0; i<p.getChildCount(); i++) {
      if(p.getChild(i).equals(ctx)) {
        if(i>0)
          return p.getChild(i-1);
        break;
      }
    }
  }
  return null;
}
 
開發者ID:twosigma,項目名稱:beaker-notebook-archive,代碼行數:14,代碼來源:GroovyNodeCompletion.java

示例3: searchTokenFromHead

import org.antlr.v4.runtime.RuleContext; //導入方法依賴的package包/類
private Token searchTokenFromHead(RuleContext ctx, SilverstripeTokenId token) {
    for(int i=0; i<ctx.getChildCount(); i++) {
        ParseTree child = ctx.getChild(i);
        if(child instanceof TerminalNode && ((TerminalNode)child).getSymbol().getType() == token.getId()) {
            return ((TerminalNode)child).getSymbol();
        }
    }
    throw new IllegalArgumentException("Illegal arguments");
}
 
開發者ID:jdemeschew,項目名稱:stpnb,代碼行數:10,代碼來源:BraceMatchingVisitor.java

示例4: searchTokenFromTail

import org.antlr.v4.runtime.RuleContext; //導入方法依賴的package包/類
private Token searchTokenFromTail(RuleContext ctx, SilverstripeTokenId token) {
    for(int i=ctx.getChildCount()-1; i>=0; i--) {
        ParseTree child = ctx.getChild(i);
        if(child instanceof TerminalNode && ((TerminalNode)child).getSymbol().getType() == token.getId()) {
            return ((TerminalNode)child).getSymbol();
        }
    }
    throw new IllegalArgumentException("Illegal arguments");
}
 
開發者ID:jdemeschew,項目名稱:stpnb,代碼行數:10,代碼來源:BraceMatchingVisitor.java


注:本文中的org.antlr.v4.runtime.RuleContext.getChildCount方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。