Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2001-09-02 19:37:11 +0400
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2001-09-02 19:37:11 +0400
commit3f3a2a5036fd4b7ad6928229f789cf9989845bcb (patch)
tree880fbeb59d905935f47c32e4e2efe73dca892a2d /mcs/errors/errors.txt
parente4eac5b64d3a9752bac46eaa387ceb4a23ab8c7a (diff)
2001-09-02 Ravi Pratap <ravi@ximian.com>
* class.cs (Operator::CheckUnaryOperator): Correct error number used to make it coincide with MS' number. (Operator::CheckBinaryOperator): Ditto. * ../errors/errors.txt : Remove error numbers added earlier. * ../errors/cs1019.cs : Test case for error # 1019 * ../errros/cs1020.cs : Test case for error # 1020 * cs-parser.jay : Clean out commented cruft. (dimension_separators, dimension_separator): Comment out. Ostensibly not used anywhere - non-reducing rule. (namespace_declarations): Non-reducing rule - comment out. * enum.cs (Enum::AddEnum): Rename to AddEnumMember as I was getting confused with TypeContainer::AddEnum. * delegate.cs : New file for delegate handling classes. (Delegate): Class for declaring delegates. * makefile : Update. * cs-parser.jay (delegate_declaration): Implement. svn path=/trunk/mcs/; revision=696
Diffstat (limited to 'mcs/errors/errors.txt')
-rwxr-xr-xmcs/errors/errors.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/mcs/errors/errors.txt b/mcs/errors/errors.txt
index 721ce6fa842..718b9c43547 100755
--- a/mcs/errors/errors.txt
+++ b/mcs/errors/errors.txt
@@ -13,7 +13,3 @@ numbers to match the Microsoft numbers:
-3 Constant type is not one of sbyte, byte, short, ushort, int,
uint, long, ulong, char, float, double, decimal, bool, string, enum
or null type.
-
--4 Operator should be unary
-
--5 Operator should be binary