2004-01-04 David Sheldon <dave-mono@earth.li>
authorDavid Sheldon <dave@mono-cvs.ximian.com>
Sun, 4 Jan 2004 00:43:15 +0000 (00:43 -0000)
committerDavid Sheldon <dave@mono-cvs.ximian.com>
Sun, 4 Jan 2004 00:43:15 +0000 (00:43 -0000)
  * mcs/expression.cs, mbas/expression.cs, gmcs/expression.cs: Added matching ")" to error message for CS0077

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

mcs/gmcs/ChangeLog
mcs/gmcs/expression.cs
mcs/mbas/ChangeLog
mcs/mbas/expression.cs
mcs/mcs/ChangeLog
mcs/mcs/expression.cs

index a5d95fda90b535e77727b516a3b4a2b16d1c9733..b2eb21b9bad8b351f08b7ad682f9299131bdf46b 100755 (executable)
@@ -1,3 +1,8 @@
+2004-01-04  David Sheldon <dave-mono@earth.li>
+
+  * expression.cs: Added matching ")" to error message for 
+  CS0077
+
 2003-12-19  Martin Baulig  <martin@ximian.com>
 
        * typemanager.cs (TypeManager.IsEqualGenericType): New public
index d9ce215371d4fee9e7106702b48cb2d7c8d05463..65e8124d79590c72bf2eab9a38fb44198112a12f 100755 (executable)
@@ -1242,7 +1242,7 @@ namespace Mono.CSharp {
 
                        if (TypeManager.IsValueType (probe_type)){
                                Report.Error (77, loc, "The as operator should be used with a reference type only (" +
-                                             TypeManager.CSharpName (probe_type) + " is a value type");
+                                             TypeManager.CSharpName (probe_type) + " is a value type)");
                                return null;
                        
                        }
index 4fdb80b238bfe6f4a35787fa0fcfd579819d4992..8f5e86619ad1b491f3a90b40c831de53e555bdc5 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-04  David Sheldon <dave-mono@earth.li>
+
+  * expression.cs: Added matching ")" to error message for 
+  CS0077
+
 2003/12/23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
        * driver.cs : added stubs for options "/netcf /sdkpath:path"\r
        * namespace.cs, decl.cs, rootcontext.cs : use hashtable to avoid duplicate importation of namespaces \r
index 91f86df21701986df13d7d955c0087ef1d061d9f..ca8746b7a973dd0196c6cb08b97f8618dc35d9e1 100644 (file)
@@ -1130,7 +1130,7 @@ namespace Mono.MonoBASIC {
 
                        if (TypeManager.IsValueType (probe_type)){
                                Report.Error (77, loc, "The as operator should be used with a reference type only (" +
-                                             TypeManager.MonoBASIC_Name (probe_type) + " is a value type");
+                                             TypeManager.MonoBASIC_Name (probe_type) + " is a value type)");
                                return null;
                        
                        }
index ccd25ca58b4c4b7253de80f95faa7cc2a7ad58e8..b7d35f1193feb561873fe05616f14141df49b029 100755 (executable)
@@ -1,3 +1,8 @@
+2004-01-04  David Sheldon <dave-mono@earth.li>
+
+  * expression.cs: Added matching ")" to error message for 
+  CS0077
+
 2004-01-03 Todd Berman <tberman@gentoo.org>
        
        * ecore.cs, attribute.cs:
index 5f75b433a61f0658941d882581553e3f8336f11b..bdeb394406de15a8ba30e0dfb11280859870db3b 100755 (executable)
@@ -1275,7 +1275,7 @@ namespace Mono.CSharp {
 
                        if (TypeManager.IsValueType (probe_type)){
                                Report.Error (77, loc, "The as operator should be used with a reference type only (" +
-                                             TypeManager.CSharpName (probe_type) + " is a value type");
+                                             TypeManager.CSharpName (probe_type) + " is a value type)");
                                return null;
                        
                        }