* ecore.cs (ImplicitInvocation, ImplicitNew, FloatingToFixedCast): Added
[mono.git] / mcs / bmcs / rootcontext.cs
index 2824da00840d2b489a253daa496655bd89113fc5..9b42c52ee4904e3fa7ca27886fae6ffd0c3d57a1 100644 (file)
@@ -123,14 +123,24 @@ namespace Mono.CSharp {
                }
                
                // 
-               // The default compiler checked state
+               // The default compiler checked state. It's "On" in case of VB.NET compiler.
                //
-               static public bool Checked = false;
+               static public bool Checked = true;
+
 
                //
                // Whether to allow Unsafe code
                //
                static public bool Unsafe = false;
+
+               //
+               // VB.NET specific compiler options
+               //
+
+               // 
+               // The default type checking state
+               //
+               static public bool StricterTypeChecking = false;
                
                static string MakeFQN (string nsn, string name)
                {