Home
last modified time | relevance | path

Searched refs:showActions (Results 1 – 2 of 2) sorted by relevance

/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DANTLRTreePrinter.g55 protected boolean showActions;
119 toString[Grammar g, boolean showActions] returns [String s=null]
122 this.showActions = showActions;
176 if ( showActions )
275 {if ( showActions ) out("@"+$id.text+"{"+$a.text+"}");}
387 | a=ACTION {if ( showActions ) {out("{"); out($a.text); out("}");}}
388 | a2=FORCED_ACTION {if ( showActions ) {out("{{"); out($a2.text); out("}}");}}
391 if ( showActions )
412 if ( showActions ) {out("{"); out($gpred.text); out("}? =>");}
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DGrammar.java3148 public String grammarTreeToString(GrammarAST t, boolean showActions) { in grammarTreeToString() argument
3152 s += new ANTLRTreePrinter(new CommonTreeNodeStream(t)).toString(this, showActions); in grammarTreeToString()