Moved ErrorLevel enum into its own file
authorJackson Harper <jackson@novell.com>
Sun, 15 Dec 2002 18:02:23 +0000 (18:02 -0000)
committerJackson Harper <jackson@novell.com>
Sun, 15 Dec 2002 18:02:23 +0000 (18:02 -0000)
svn path=/trunk/mcs/; revision=9685

mcs/class/Cscompmgd/Microsoft.CSharp/ChangeLog
mcs/class/Cscompmgd/Microsoft.CSharp/CompilerError.cs
mcs/class/Cscompmgd/Microsoft.CSharp/ErrorLevel.cs [new file with mode: 0644]

index 09ef8b047d5e44bc8ca8198d90657c2bedfab1f5..74e72e61c18bdd69fea98ed0659d6ec5f6a36585 100644 (file)
@@ -1,3 +1,7 @@
+2002-12-15 Jackson Harper <jackson@latitudegeo.com>
+
+       * CompilerError.cs ErrorLevel.cs: Moved ErrorLevel enum into its own file
+
 2002-12-12 Jackson Harper <jackson@latitudegeo.com>
 
        * Compiler.cs: Partially implemented bugreport option, also only allow valid options now
index b52d289f990de611fdd2feec6d9c6c9842e40c04..bafbf47b0add14dcf5a40e93fd68cf47b06bb7cf 100644 (file)
@@ -11,13 +11,6 @@ using System.Text;
 
 namespace Microsoft.CSharp {
 
-       public enum ErrorLevel {
-               None,
-               Warning,
-               Error,
-               FatalError,
-       }
-
        public class CompilerError {
   
                private ErrorLevel level = ErrorLevel.None;
diff --git a/mcs/class/Cscompmgd/Microsoft.CSharp/ErrorLevel.cs b/mcs/class/Cscompmgd/Microsoft.CSharp/ErrorLevel.cs
new file mode 100644 (file)
index 0000000..39b622a
--- /dev/null
@@ -0,0 +1,17 @@
+// Microsoft.CSharp.ErrorLevel
+//
+// Author(s):
+//  Jackson Harper (Jackson@LatitudeGeo.com)
+//
+// (C) 2002 Jackson Harper, All rights reserved.
+//
+
+namespace Microsoft.CSharp {
+
+       public enum ErrorLevel {
+               None,
+               Warning,
+               Error,
+               FatalError,
+       }
+}
\ No newline at end of file