* ILParser.jay: Remove dotted_name, it is not used at all
authorJackson Harper <jackson@novell.com>
Wed, 7 May 2003 07:25:20 +0000 (07:25 -0000)
committerJackson Harper <jackson@novell.com>
Wed, 7 May 2003 07:25:20 +0000 (07:25 -0000)
anymore. vtattr only take an int64 param, this fix gets rid of all
of the remaining reduce/reduce conflicts

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

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

index 45dbd20825c1f6d48a2d5d1784664bc34264cd2e..0c420fdeb1a4792933ba73e7b5c2cd0857f4f295 100644 (file)
@@ -1,3 +1,9 @@
+2003-05-07 Jackson Harper <jackson@latitudegeo.com>
+
+       * ILParser.jay: Remove dotted_name, it is not used at all
+       anymore. vtattr only take an int64 param, this fix gets rid of all
+       of the remaining reduce/reduce conflicts
+               
 2003-05-07 Jackson Harper <jackson@latitudegeo.com>
 
        * ILParser.jay: Remove extraneous dotted_name, also make comp_name
index 92fce25b343b875d1204402ebc291a7805857aa9..25efab48b12550e90723fd60483d009444b6fed2 100644 (file)
@@ -402,7 +402,6 @@ vtfixup_decl                : D_VTFIXUP OPEN_BRACKET int32 CLOSE_BRACKET
                        ;\r
 \r
 vtfixup_attr           : /* EMPTY */\r
-                       | vtfixup_attr int32\r
                        | vtfixup_attr int64\r
                        | vtfixup_attr K_FROMUNMANAGED\r
                        | vtfixup_attr K_CALLMOSTDERIVED\r
@@ -1827,10 +1826,6 @@ manifestres_decl : D_FILE comp_name K_AT int32
                        | customattr_decl\r
                        ;\r
 \r
-dotted_name            : id\r
-                       | dotted_name DOT id    { $$ = String.Format ("{0}.{1}", $1, $3); }\r
-                       ;\r
-\r
 comp_qstring           : QSTRING\r
                        | comp_qstring PLUS QSTRING     { $$ = String.Format ("{0}{1}", $1, $3); }\r
                        ;\r