summaryrefslogtreecommitdiffstats
path: root/src/syntaxParser/java_cup/assoc.java
diff options
context:
space:
mode:
authorConstantin Jucovschi <cj@ubuntu.localdomain>2009-03-31 06:18:54 -0400
committerConstantin Jucovschi <cj@ubuntu.localdomain>2009-03-31 06:18:54 -0400
commit0f1055b8d7f97d86c66fa602c17666bc2ff9c437 (patch)
tree9c68fa99a97063bbe4a4231e04fc09329541ac71 /src/syntaxParser/java_cup/assoc.java
Initial commit
Diffstat (limited to 'src/syntaxParser/java_cup/assoc.java')
-rw-r--r--src/syntaxParser/java_cup/assoc.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/syntaxParser/java_cup/assoc.java b/src/syntaxParser/java_cup/assoc.java
new file mode 100644
index 0000000..8d0b50e
--- /dev/null
+++ b/src/syntaxParser/java_cup/assoc.java
@@ -0,0 +1,16 @@
+package java_cup;
+
+/* Defines integers that represent the associativity of terminals
+ * @version last updated: 7/3/96
+ * @author Frank Flannery
+ */
+
+public class assoc {
+
+ /* various associativities, no_prec being the default value */
+ public final static int left = 0;
+ public final static int right = 1;
+ public final static int nonassoc = 2;
+ public final static int no_prec = -1;
+
+} \ No newline at end of file