checked in changes
[repair.git] / Repair / RepairCompiler / java_cup / assoc.java
1 package java_cup;
2
3 /* Defines integers that represent the associativity of terminals
4  * @version last updated: 7/3/96
5  * @author  Frank Flannery
6  */
7
8 public class assoc {
9
10   /* various associativities, no_prec being the default value */
11   public final static int left = 0;
12   public final static int right = 1;
13   public final static int nonassoc = 2;
14   public final static int no_prec = -1;
15
16 }