Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/dlr/Runtime/Microsoft.Scripting.Core/Ast/BlockExpression.cs')
-rw-r--r--mcs/class/dlr/Runtime/Microsoft.Scripting.Core/Ast/BlockExpression.cs13
1 files changed, 4 insertions, 9 deletions
diff --git a/mcs/class/dlr/Runtime/Microsoft.Scripting.Core/Ast/BlockExpression.cs b/mcs/class/dlr/Runtime/Microsoft.Scripting.Core/Ast/BlockExpression.cs
index 8dab6ca8b70..80f013325f5 100644
--- a/mcs/class/dlr/Runtime/Microsoft.Scripting.Core/Ast/BlockExpression.cs
+++ b/mcs/class/dlr/Runtime/Microsoft.Scripting.Core/Ast/BlockExpression.cs
@@ -12,27 +12,22 @@
*
*
* ***************************************************************************/
-using System; using Microsoft;
-
+using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
-#if CODEPLEX_40
using System.Dynamic.Utils;
-#else
-using Microsoft.Scripting.Utils;
-#endif
using System.Threading;
#if SILVERLIGHT
using System.Core;
#endif
-#if CODEPLEX_40
-namespace System.Linq.Expressions {
+#if CLR2
+namespace Microsoft.Scripting.Ast {
#else
-namespace Microsoft.Linq.Expressions {
+namespace System.Linq.Expressions {
#endif
/// <summary>
/// Represents a block that contains a sequence of expressions where variables can be defined.