1 package antlr; 2 3 /** 4 * This class contains information about how an action 5 * was translated (using the AST conversion rules). 6 */ 7 public class ActionTransInfo { 8 public boolean assignToRoot = false; // somebody did a "#rule = " 9 public String refRuleRoot = null; // somebody referenced #rule; string is translated var 10 11 12 public String toString() { 13 return "assignToRoot:"+assignToRoot+", refRuleRoot:"+refRuleRoot; 14 } 15 } 16