[sgen] Reenable gc-altstack test
[mono.git] / mcs / class / dlr / Runtime / Microsoft.Scripting.Core / Ast / ConditionalExpression.cs
index 8f49f0f88c4596fabe7820f479865dcfa72ee9fc..32d108d08ae293822cacaa13d7fb271ecdf78223 100644 (file)
@@ -17,11 +17,7 @@ using System;
 using System.Dynamic.Utils;
 using System.Diagnostics;
 
-#if SILVERLIGHT
-using System.Core;
-#endif
-
-#if CLR2
+#if !FEATURE_CORE_DLR
 namespace Microsoft.Scripting.Ast {
 #else
 namespace System.Linq.Expressions {
@@ -30,9 +26,7 @@ namespace System.Linq.Expressions {
     /// <summary>
     /// Represents an expression that has a conditional operator.
     /// </summary>
-#if !SILVERLIGHT
     [DebuggerTypeProxy(typeof(Expression.ConditionalExpressionProxy))]
-#endif
     public class ConditionalExpression : Expression {
         private readonly Expression _test;
         private readonly Expression _true;