Update to the latest dlr
[mono.git] / mcs / class / dlr / Runtime / Microsoft.Scripting.Core / Ast / GotoExpression.cs
index 0bd9827096acdb74a2593c4965f852311c57d45d..7fa8c9a61b7eb937edaeb9a90afc21416160ee40 100644 (file)
@@ -17,11 +17,7 @@ using System;
 using System.Diagnostics;
 using System.Dynamic.Utils;
 
-#if SILVERLIGHT
-using System.Core;
-#endif
-
-#if CLR2
+#if !FEATURE_CORE_DLR
 namespace Microsoft.Scripting.Ast {
 #else
 namespace System.Linq.Expressions {
@@ -51,9 +47,7 @@ namespace System.Linq.Expressions {
     /// <summary>
     /// Represents an unconditional jump. This includes return statements, break and continue statements, and other jumps.
     /// </summary>
-#if !SILVERLIGHT
     [DebuggerTypeProxy(typeof(Expression.GotoExpressionProxy))]
-#endif
     public sealed class GotoExpression : Expression {
         private readonly GotoExpressionKind _kind;
         private readonly Expression _value;