本文整理了Java中org.antlr.v4.tool.Grammar.getImplicitLexer()
方法的一些代码示例,展示了Grammar.getImplicitLexer()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Grammar.getImplicitLexer()
方法的具体详情如下:
包路径:org.antlr.v4.tool.Grammar
类名称:Grammar
方法名:getImplicitLexer
[英]Get delegates below direct delegates of g public List getIndirectDelegates(Grammar g) { List direct = getDirectDelegates(g); List delegates = getDelegates(g); delegates.removeAll(direct); return delegates; }
[中]在g的直接委托下获取委托公共列表getIndirectDelegates(语法g){List direct=getDirectDelegates(g);List delegates=getDelegates(g);delegates.removeAll(direct);return delegates;}
代码示例来源:origin: antlr4ide/antlr4ide
} else {
lg = g.getImplicitLexer();
代码示例来源:origin: antlr/intellij-plugin-v4
return new Grammar[] {lg, null};
case ANTLRParser.COMBINED :
lg = g.getImplicitLexer();
if ( lg==null ) {
lg = BAD_LEXER_GRAMMAR;
内容来源于网络,如有侵权,请联系作者删除!