2009-10-23 Marek Safar <marek.safar@gmail.com>
commit838e2727f38f4e11ff280cb96e182cab4d5b150d
authormarek <marek@e3ebcda4-bce8-0310-ba0a-eca2169e7518>
Fri, 23 Oct 2009 17:12:44 +0000 (23 17:12 +0000)
committermarek <marek@e3ebcda4-bce8-0310-ba0a-eca2169e7518>
Fri, 23 Oct 2009 17:12:44 +0000 (23 17:12 +0000)
treec7722d7643127c82821a43a255c6d8491cd56850
parent52806b15fe4132d882d74af9d4dce5b8b1f50e59
2009-10-23  Marek Safar  <marek.safar@gmail.com>

* Updated to r33356.

git-svn-id: svn+ssh://mono-cvs.ximian.com/source/trunk/mcs@144747 e3ebcda4-bce8-0310-ba0a-eca2169e7518
128 files changed:
class/dlr/ChangeLog
class/dlr/Runtime/Microsoft.Dynamic/Microsoft.Dynamic.Build.csproj
class/dlr/Runtime/Microsoft.Dynamic/Microsoft.Dynamic.csproj
class/dlr/Runtime/Microsoft.Dynamic/Properties/AssemblyInfo.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/BinaryOperationBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/BindingRestrictions.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/CallInfo.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/CallSite.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/CallSiteBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/CallSiteHelpers.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/CallSiteOps.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/ConvertBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/CreateInstanceBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/DeleteIndexBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/DeleteMemberBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/DynamicMetaObject.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/DynamicMetaObjectBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/DynamicObject.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/ExpandoClass.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/ExpandoObject.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/GetIndexBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/GetMemberBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/IDynamicMetaObjectProvider.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/InvokeBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/InvokeMemberBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/RuleCache.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/SetIndexBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/SetMemberBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/UnaryOperationBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Actions/UpdateDelegates.Generated.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/BinaryExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/BlockExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/CatchBlock.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/ConditionalExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/ConstantExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/DebugInfoExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/DebugViewWriter.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/DefaultExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/DynamicExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/ElementInit.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/Expression.DebuggerProxy.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/Expression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/ExpressionStringBuilder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/ExpressionType.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/ExpressionVisitor.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/GotoExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/IArgumentProvider.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/IndexExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/InvocationExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/LabelExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/LabelTarget.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/LambdaExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/ListArgumentProvider.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/ListInitExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/LoopExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/MemberAssignment.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/MemberBinding.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/MemberExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/MemberInitExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/MemberListBinding.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/MemberMemberBinding.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/MethodCallExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/NewArrayExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/NewExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/ParameterExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/RuntimeVariablesExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/SwitchCase.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/SwitchExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/SymbolDocumentInfo.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/TryExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/TypeBinaryExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/TypeUtils.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Ast/UnaryExpression.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/AnalyzedTree.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/AssemblyGen.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/BoundConstants.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/Closure.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/CompilerScope.Storage.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/CompilerScope.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/ConstantCheck.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/DebugInfoGenerator.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/DelegateHelpers.Generated.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/DelegateHelpers.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/ExpressionQuoter.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/HoistedLocals.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/ILGen.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/KeyedQueue.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/LabelInfo.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/LambdaCompiler.Address.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/LambdaCompiler.Binary.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/LambdaCompiler.ControlFlow.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/LambdaCompiler.Expressions.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/LambdaCompiler.Generated.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/LambdaCompiler.Lambda.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/LambdaCompiler.Logical.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/LambdaCompiler.Statements.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/LambdaCompiler.Unary.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/LambdaCompiler.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/OffsetTrackingILGenerator.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/RuntimeVariableList.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/Set.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/StackSpiller.Bindings.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/StackSpiller.Generated.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/StackSpiller.Temps.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/StackSpiller.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/SymbolDocumentGenerator.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Compiler/VariableBinder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/GlobalSuppressions.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Microsoft.Scripting.Core.csproj
class/dlr/Runtime/Microsoft.Scripting.Core/Microsoft.Scripting.ExtensionAttribute.csproj
class/dlr/Runtime/Microsoft.Scripting.Core/Properties/AssemblyInfo.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Properties/ExtensionAssemblyInfo.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Stubs.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/Action.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/CacheDict.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/CollectionExtensions.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/ContractUtils.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/ExceptionFactory.Generated.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/Extension.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/Function.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/Helpers.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/IRuntimeVariables.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/ReadOnlyCollectionBuilder.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/ReadOnlyDictionary.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/ReferenceEqualityComparer.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/StrongBox.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/TrueReadOnlyCollection.cs
class/dlr/Runtime/Microsoft.Scripting.Core/Utils/TypeExtensions.cs