X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/6e30ede87a1c39c53842a6a747ecd9f7484d92a5..4323e0dac386d777d070c68564f1c0041b06935d:/src/assoc.h diff --git a/src/assoc.h b/src/assoc.h index 6ed1780d..44f8573b 100644 --- a/src/assoc.h +++ b/src/assoc.h @@ -1,6 +1,6 @@ /* Associativity information. - Copyright (C) 2002, 2006, 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 2002, 2006, 2008-2012 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -23,10 +23,11 @@ /* 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);