]> git.saurik.com Git - bison.git/blobdiff - src/reader.h
Credit Satya for the graphviz change.
[bison.git] / src / reader.h
index 7b2cbac6883eae9a8930897342dfadc9f3d1cbe3..43985965c4c41e893889c9731d04775e57d0969b 100644 (file)
@@ -33,6 +33,7 @@ typedef struct merger_list
   struct merger_list* next;
   uniqstr name;
   uniqstr type;
+  location type_declaration_location;
 } merger_list;
 
 /* From the parser.  */
@@ -58,7 +59,10 @@ void free_merger_functions (void);
 extern merger_list *merge_functions;
 
 /* Was %union seen?  */
-extern bool typed;
+extern bool union_seen;
+
+/* Was a tag seen?  */
+extern bool tag_seen;
 
 /* Should rules have a default precedence?  */
 extern bool default_prec;