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:
authorRodrigo Kumpera <kumpera@gmail.com>2013-03-01 19:52:03 +0400
committerRodrigo Kumpera <kumpera@gmail.com>2013-03-01 19:52:03 +0400
commit93e2d1dc48339be472300910e9290939ee253177 (patch)
tree34d58191bd013f8177b6010b9c3e11008950120f /mcs/class/dlr
parenta4c61d97f6378d270bfc453a34c51d0c625fc05d (diff)
Fix object::GetType when remoting is enabled.
Diffstat (limited to 'mcs/class/dlr')
-rw-r--r--mcs/class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/HoistedLocals.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/HoistedLocals.cs b/mcs/class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/HoistedLocals.cs
index ddb304be986..b6db15ad2e2 100644
--- a/mcs/class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/HoistedLocals.cs
+++ b/mcs/class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/HoistedLocals.cs
@@ -64,7 +64,7 @@ namespace System.Linq.Expressions.Compiler {
internal readonly HoistedLocals Parent;
// A mapping of hoisted variables to their indexes in the array
- internal readonly System.Dynamic.Utils.ReadOnlyDictionary<Expression, int> Indexes;
+ internal readonly ReadOnlyDictionary<Expression, int> Indexes;
// The variables, in the order they appear in the array
internal readonly ReadOnlyCollection<ParameterExpression> Variables;
@@ -87,7 +87,7 @@ namespace System.Linq.Expressions.Compiler {
SelfVariable = Expression.Variable(typeof(object[]), null);
Parent = parent;
Variables = vars;
- Indexes = new System.Dynamic.Utils.ReadOnlyDictionary<Expression, int>(indexes);
+ Indexes = new ReadOnlyDictionary<Expression, int>(indexes);
}
internal ParameterExpression ParentVariable {