1 2 package java_cup; 3 4 10 11 public class action_production extends production { 12 13 20 public action_production( 21 production base, 22 non_terminal lhs_sym, 23 production_part rhs_parts[], 24 int rhs_len, 25 String action_str) 26 throws internal_error 27 { 28 super(lhs_sym, rhs_parts, rhs_len, action_str); 29 _base_production = base; 30 } 31 32 33 34 35 protected production _base_production; 36 37 38 public production base_production() {return _base_production;} 39 } 40 | Popular Tags |