Index: CompilerParameters.cs =================================================================== --- CompilerParameters.cs (revision 1439) +++ CompilerParameters.cs (working copy) @@ -1,4 +1,4 @@ -#region license +#region license // Copyright (c) 2004, Rodrigo B. de Oliveira (rbo@acm.org) // All rights reserved. // @@ -56,6 +56,8 @@ bool _debug; + bool _duckByDefault; + public readonly TraceSwitch TraceSwitch = new TraceSwitch("booc", "boo compiler"); public CompilerParameters() @@ -211,5 +213,17 @@ _debug = value; } } + + public bool DuckByDefault + { + get + { + return _duckByDefault; + } + set + { + _duckByDefault = value; + } + } } }