Author: jackson
Date: 2005-05-12 22:29:58 -0400 (Thu, 12 May 2005)
New Revision: 44483

Modified:
   trunk/mcs/ilasm/parser/ChangeLog
   trunk/mcs/ilasm/parser/ILParser.jay
Log:
        * ILParser.jay: Handle lists of data items correctly.



Modified: trunk/mcs/ilasm/parser/ChangeLog
===================================================================
--- trunk/mcs/ilasm/parser/ChangeLog    2005-05-13 02:03:10 UTC (rev 44482)
+++ trunk/mcs/ilasm/parser/ChangeLog    2005-05-13 02:29:58 UTC (rev 44483)
@@ -1,3 +1,7 @@
+2005-05-12  Jackson Harper  <[EMAIL PROTECTED]>
+
+       * ILParser.jay: Handle lists of data items correctly.
+
 2005-05-10  Ankit Jain  <[EMAIL PROTECTED]>
 
        Fix #74768.

Modified: trunk/mcs/ilasm/parser/ILParser.jay
===================================================================
--- trunk/mcs/ilasm/parser/ILParser.jay 2005-05-13 02:03:10 UTC (rev 44482)
+++ trunk/mcs/ilasm/parser/ILParser.jay 2005-05-13 02:29:58 UTC (rev 44483)
@@ -1337,6 +1337,9 @@
                        ;
 
 data_body              : OPEN_BRACE dataitem_list CLOSE_BRACE
+                          {
+                                $$ = $2;
+                          }
                        | dataitem
                        ;
 

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to