Home
last modified time | relevance | path

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

/external/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/
DANTLRTreePrinter.g56 protected boolean showActions;
120 toString[Grammar g, boolean showActions] returns [String s=null]
123 this.showActions = showActions;
177 if ( showActions )
276 {if ( showActions ) out("@"+$id.text+"{"+$a.text+"}");}
388 | a=ACTION {if ( showActions ) {out("{"); out($a.text); out("}");}}
389 | a2=FORCED_ACTION {if ( showActions ) {out("{{"); out($a2.text); out("}}");}}
392 if ( showActions )
413 if ( showActions ) {out("{"); out($gpred.text); out("}? =>");}
/external/antlr/tool/src/main/java/org/antlr/tool/
DGrammar.java3191 public String grammarTreeToString(GrammarAST t, boolean showActions) { in grammarTreeToString() argument
3195 s += new ANTLRTreePrinter(new CommonTreeNodeStream(t)).toString(this, showActions); in grammarTreeToString()