]> git.saurik.com Git - bison.git/blobdiff - src/assoc.h
Flag glr tests.
[bison.git] / src / assoc.h
index d900caff9684c01f2605a5aa1a9c4005c48b171c..e65586ffaee9395f7c34ac8b5b6fbf335d26d0f6 100644 (file)
@@ -1,5 +1,5 @@
 /* Associativity information.
-   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2006, 2008 Free Software Foundation, Inc.
 
    This file is part of Bison, the GNU Compiler Compiler.
 
 /* Associativity values for tokens and rules.  */
 typedef enum
 {
-  undef_assoc,
-  right_assoc,
-  left_assoc,
-  non_assoc
+  undef_assoc,     /** Not defined. */
+  right_assoc,     /** %right */
+  left_assoc,      /** %left */
+  non_assoc,       /** %nonassoc */
+  precedence_assoc /** %precedence */
 } assoc;
 
 char const *assoc_to_string (assoc a);