KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > java_cup > internal > assoc


1 package com.sun.java_cup.internal;
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 }
17
18
Popular Tags