* ILParser.jay: Remove extraneous dotted_name, also make comp_name
authorJackson Harper <jackson@novell.com>
Wed, 7 May 2003 07:11:54 +0000 (07:11 -0000)
committerJackson Harper <jackson@novell.com>
Wed, 7 May 2003 07:11:54 +0000 (07:11 -0000)
contain dotted_name logic. Oh how I will miss the 301
reduce/reduce conflicts these small changes fixed :-)

svn path=/trunk/mcs/; revision=14364

mcs/ilasm/parser/ChangeLog
mcs/ilasm/parser/ILParser.jay

index 6162a39cf8987c9e2ec0af1f72e3f274d4c6dab0..45dbd20825c1f6d48a2d5d1784664bc34264cd2e 100644 (file)
@@ -1,3 +1,9 @@
+2003-05-07 Jackson Harper <jackson@latitudegeo.com>
+
+       * ILParser.jay: Remove extraneous dotted_name, also make comp_name
+       contain dotted_name logic. Oh how I will miss the 301
+       reduce/reduce conflicts these small changes fixed :-)
+               
 2003-05-06 Jackson Harper <jackson@latitudegeo.com>
 
        * ILParser.jay: Emit INSTR_I8 instructions as int
index 44e57851e72ff7aa873df29394580b67b20bf6f6..92fce25b343b875d1204402ebc291a7805857aa9 100644 (file)
@@ -1894,11 +1894,10 @@ id                      : ID
                        ;\r
 \r
 comp_name              : id\r
-                       | dotted_name\r
-                       ;\r
-\r
-dotted_name            : id\r
-                       | dotted_name DOT id\r
+                       | comp_name DOT id\r
+                          {\r
+                                $$ = (string) $1 + '.' + (string) $3;\r
+                          }\r
                        ;\r
 \r
 \r