Home | History | Annotate | Download | only in tool

Lines Matching refs:ASSOC

14 	public static enum ASSOC { left, right };
31 public Map<Integer, ASSOC> altAssociativity = new HashMap<Integer, ASSOC>();
64 ASSOC assoc = ASSOC.left;
66 String a = (String)t.terminalOptions.get("assoc");
68 if ( a.equals(ASSOC.right.toString()) ) {
69 assoc = ASSOC.right;
72 ErrorManager.error(ErrorManager.MSG_ILLEGAL_OPTION_VALUE, "assoc", assoc);
77 if ( altAssociativity.get(alt)!=null && altAssociativity.get(alt)!=assoc ) {
80 altAssociativity.put(alt, assoc);
82 //System.out.println("op " + alt + ": " + t.getText()+", assoc="+assoc);
316 if ( altAssociativity.get(alt)==ASSOC.left ) p++;