├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .vsts-ci.yml ├── Build.proj ├── Build ├── After.targets ├── Key.snk ├── Tasks.Targets ├── net462.props ├── net6.0.props ├── net8.0.props ├── net9.0.props ├── netstandard2.0.props └── steps.yml ├── CurrentVersion.props ├── Directory.Build.props ├── Dlr.sln ├── Docs ├── dlr-overview.doc ├── dlr-overview.pdf ├── dlr-spec-hosting.doc ├── dlr-spec-hosting.pdf ├── expr-tree-spec.doc ├── expr-tree-spec.pdf ├── library-authors-introduction.doc ├── library-authors-introduction.pdf ├── sites-binders-dynobj-interop.doc ├── sites-binders-dynobj-interop.pdf ├── sympl.doc └── sympl.pdf ├── LICENSE ├── NuGet.config ├── Package └── nuget │ ├── DynamicLanguageRuntime.nuspec │ └── NuGet.Packaging.csproj ├── README.md ├── Samples ├── Hosting │ └── Scenarios │ │ ├── Hosting Scenarios.csproj │ │ ├── Program.cs │ │ ├── merlin_web_page_code_behind.py │ │ ├── register_user_commands.py │ │ └── user_commands.rb └── sympl │ ├── csharp │ ├── DlrHosting.cs │ ├── ETGen.cs │ ├── Lexer.cs │ ├── Parser.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Runtime.cs │ ├── Sympl.cs │ ├── app.config │ ├── sympl.csproj │ └── test.bsl │ ├── examples │ ├── indexing.sympl │ ├── lists.sympl │ ├── ops.sympl │ ├── test.bat │ ├── test.sympl │ └── test_python.bat │ └── python │ ├── etgen.py │ ├── lexer.py │ ├── parser.py │ ├── runtime.py │ ├── sympl.py │ ├── test.bsl │ └── test.py ├── Src ├── Directory.Build.props ├── Microsoft.Dynamic │ ├── Actions │ │ ├── ActionBinder.cs │ │ ├── Argument.cs │ │ ├── ArgumentType.cs │ │ ├── BoundMemberTracker.cs │ │ ├── CallSignature.cs │ │ ├── Calls │ │ │ ├── ActualArguments.cs │ │ │ ├── ApplicableCandidate.cs │ │ │ ├── ArgBuilder.cs │ │ │ ├── ArgumentBinding.cs │ │ │ ├── BindingResult.cs │ │ │ ├── BindingTarget.cs │ │ │ ├── ByRefReturnBuilder.cs │ │ │ ├── CallFailure.cs │ │ │ ├── CallFailureReason.cs │ │ │ ├── Candidate.cs │ │ │ ├── CandidateSet.cs │ │ │ ├── ConversionResult.cs │ │ │ ├── DefaultArgBuilder.cs │ │ │ ├── DefaultOverloadResolver.cs │ │ │ ├── InstanceBuilder.cs │ │ │ ├── KeywordArgBuilder.cs │ │ │ ├── KeywordConstructorReturnBuilder.cs │ │ │ ├── MethodCandidate.cs │ │ │ ├── NarrowingLevel.cs │ │ │ ├── OutArgBuilder.cs │ │ │ ├── OverloadInfo.cs │ │ │ ├── OverloadResolver.cs │ │ │ ├── OverloadResolverFactory.cs │ │ │ ├── ParameterMapping.cs │ │ │ ├── ParameterWrapper.cs │ │ │ ├── ParamsArgBuilder.cs │ │ │ ├── ParamsDictArgBuilder.cs │ │ │ ├── ReferenceArgBuilder.cs │ │ │ ├── RestrictedArguments.cs │ │ │ ├── ReturnBuilder.cs │ │ │ ├── ReturnReferenceArgBuilder.cs │ │ │ ├── SimpleArgBuilder.cs │ │ │ └── TypeInferer.cs │ │ ├── ComboActionRewriter.cs │ │ ├── ComboBinder.cs │ │ ├── ConditionalBuilder.cs │ │ ├── ConstructorTracker.cs │ │ ├── ConversionResultKind.cs │ │ ├── CustomTracker.cs │ │ ├── DefaultBinder.Conversions.cs │ │ ├── DefaultBinder.DeleteMember.cs │ │ ├── DefaultBinder.GetMember.cs │ │ ├── DefaultBinder.Invoke.cs │ │ ├── DefaultBinder.MethodCalls.cs │ │ ├── DefaultBinder.Operations.cs │ │ ├── DefaultBinder.SetMember.cs │ │ ├── DefaultBinder.cs │ │ ├── DynamicSiteHelper.cs │ │ ├── ErrorInfo.cs │ │ ├── ErrorMetaObject.cs │ │ ├── EventTracker.cs │ │ ├── ExtensionBinaryOperationBinder.cs │ │ ├── ExtensionMethodTracker.cs │ │ ├── ExtensionPropertyTracker.cs │ │ ├── ExtensionUnaryOperationBinder.cs │ │ ├── FieldTracker.cs │ │ ├── ILightExceptionBinder.cs │ │ ├── Interceptor.cs │ │ ├── MemberGroup.cs │ │ ├── MemberRequestKind.cs │ │ ├── MemberTracker.cs │ │ ├── MethodGroup.cs │ │ ├── MethodTracker.cs │ │ ├── NamespaceTracker.cs │ │ ├── NestedTypeTracker.cs │ │ ├── NoSideEffectsAttribute.cs │ │ ├── OperationBinder.cs │ │ ├── OperationMetaObject.cs │ │ ├── OperatorInfo.cs │ │ ├── PropertyTracker.cs │ │ ├── ReflectedPropertyTracker.cs │ │ ├── TopNamespaceTracker.cs │ │ ├── TrackerTypes.cs │ │ ├── TypeGroup.cs │ │ └── TypeTracker.cs │ ├── Ast │ │ ├── BinaryExpression.cs │ │ ├── Block.cs │ │ ├── BlockBuilder.cs │ │ ├── ConstantExpression.cs │ │ ├── DebugStatement.cs │ │ ├── EmptyStatements.cs │ │ ├── ExpressionCollectionBuilder.cs │ │ ├── FinallyFlowControlExpression.cs │ │ ├── FlowControlRewriter.cs │ │ ├── GeneratorExpression.cs │ │ ├── GeneratorRewriter.cs │ │ ├── ILightExceptionAwareExpression.cs │ │ ├── IfStatementBuilder.cs │ │ ├── IfStatementTest.cs │ │ ├── LambdaBuilder.cs │ │ ├── LambdaParameterRewriter.cs │ │ ├── LightCheckAndThrowExpression.cs │ │ ├── LightDynamicExpression.cs │ │ ├── LightExceptionConvertingExpression.cs │ │ ├── LightExceptionRewriter.cs │ │ ├── LightLambdaExpression.cs │ │ ├── LightThrowExpression.cs │ │ ├── LoopStatement.cs │ │ ├── MethodCallExpression.cs │ │ ├── NewArrayExpression.cs │ │ ├── NewExpression.cs │ │ ├── SourceFileInformation.cs │ │ ├── TryStatementBuilder.cs │ │ ├── UnaryExpression.cs │ │ ├── Utils.cs │ │ └── YieldExpression.cs │ ├── ComInterop │ │ ├── ArgBuilder.cs │ │ ├── BoolArgBuilder.cs │ │ ├── BoundDispEvent.cs │ │ ├── CollectionExtensions.cs │ │ ├── ComBinder.cs │ │ ├── ComBinderHelpers.cs │ │ ├── ComClassMetaObject.cs │ │ ├── ComDispIds.cs │ │ ├── ComEventDesc.cs │ │ ├── ComEventSink.netcoreapp.cs │ │ ├── ComEventSink.netfx.cs │ │ ├── ComEventSinkProxy.netfx.cs │ │ ├── ComEventSinksContainer.cs │ │ ├── ComEventsMethod.netcoreapp.cs │ │ ├── ComFallbackMetaObject.cs │ │ ├── ComHresults.cs │ │ ├── ComInterop.cs │ │ ├── ComInvokeAction.cs │ │ ├── ComInvokeBinder.cs │ │ ├── ComMetaObject.cs │ │ ├── ComMethodDesc.cs │ │ ├── ComObject.cs │ │ ├── ComParamDesc.cs │ │ ├── ComRuntimeHelpers.cs │ │ ├── ComType.cs │ │ ├── ComTypeClassDesc.cs │ │ ├── ComTypeDesc.cs │ │ ├── ComTypeEnumDesc.cs │ │ ├── ComTypeLibDesc.cs │ │ ├── ComTypeLibInfo.cs │ │ ├── ComTypeLibMemberDesc.cs │ │ ├── ConversionArgBuilder.cs │ │ ├── ConvertArgBuilder.cs │ │ ├── ConvertibleArgBuilder.cs │ │ ├── CurrencyArgBuilder.cs │ │ ├── DateTimeArgBuilder.cs │ │ ├── DispCallable.cs │ │ ├── DispCallableMetaObject.cs │ │ ├── DispatchArgBuilder.cs │ │ ├── ErrorArgBuilder.cs │ │ ├── Errors.cs │ │ ├── ExcepInfo.cs │ │ ├── Helpers.cs │ │ ├── IDispatchComObject.cs │ │ ├── IDispatchMetaObject.cs │ │ ├── IPseudoComObject.cs │ │ ├── NullArgBuilder.cs │ │ ├── SimpleArgBuilder.cs │ │ ├── SplatCallSite.cs │ │ ├── StringArgBuilder.cs │ │ ├── TypeEnumMetaObject.cs │ │ ├── TypeLibInfoMetaObject.cs │ │ ├── TypeLibMetaObject.cs │ │ ├── TypeUtils.cs │ │ ├── UnknownArgBuilder.cs │ │ ├── VarEnumSelector.cs │ │ ├── Variant.cs │ │ ├── VariantArgBuilder.cs │ │ ├── VariantArray.cs │ │ └── VariantBuilder.cs │ ├── DebugOptions.cs │ ├── Debugging │ │ ├── CollectionUtils.cs │ │ ├── CompilerServices │ │ │ ├── DebugLambdaInfo.cs │ │ │ └── IDebugCompilerSupport.cs │ │ ├── DebugContext.GeneratorLoopProc.cs │ │ ├── DebugContext.cs │ │ ├── DebugFrame.cs │ │ ├── DebugGenerator.cs │ │ ├── DebugInfoRewriter.cs │ │ ├── DebugMode.cs │ │ ├── DebugSourceFile.cs │ │ ├── DebugSourceSpan.cs │ │ ├── DebugThread.cs │ │ ├── DebuggableLambdaBuilder.cs │ │ ├── DefaultRuntimeVariablesImpl │ │ │ ├── DebugRuntimeVariables.cs │ │ │ ├── DefaultDebugThread.cs │ │ │ └── DefaultDebugThreadFactory.cs │ │ ├── DelegateHelpers.cs │ │ ├── ForceToGeneratorLoopException.cs │ │ ├── FunctionInfo.cs │ │ ├── IDebugCallback.cs │ │ ├── InvokeTargets.cs │ │ ├── LambdaWalker.cs │ │ ├── Microsoft.Scripting.Debugging.Generated.cs │ │ ├── RuntimeOps.cs │ │ ├── RuntimeVariablesSupport │ │ │ ├── IDebugRuntimeVariables.cs │ │ │ └── IDebugThreadFactory.cs │ │ ├── ScopedRuntimeVariables.cs │ │ ├── ThreadLocal.cs │ │ ├── TraceEventKind.cs │ │ ├── TracePipeline │ │ │ ├── ITraceCallback.cs │ │ │ ├── ITracePipeline.cs │ │ │ └── TracePipeline.cs │ │ └── VariableInfo.cs │ ├── Generation │ │ ├── AssemblyGen.cs │ │ ├── CompilerHelpers.cs │ │ ├── ConstantCheck.cs │ │ ├── DelegateHelpers.Generated.cs │ │ ├── DelegateHelpers.cs │ │ ├── DynamicILGen.cs │ │ ├── FieldBuilderExpression.cs │ │ ├── IExpressionSerializable.cs │ │ ├── ILGen.cs │ │ ├── KeyedQueue.cs │ │ ├── MethodSignatureInfo.cs │ │ ├── Snippets.cs │ │ ├── SymbolGuids.cs │ │ ├── ToDiskRewriter.cs │ │ └── TypeGen.cs │ ├── GlobalSuppressions.cs │ ├── Hosting │ │ └── Shell │ │ │ ├── BasicConsole.cs │ │ │ ├── CommandLine.cs │ │ │ ├── ConsoleHost.cs │ │ │ ├── ConsoleHostOptions.cs │ │ │ ├── ConsoleHostOptionsParser.cs │ │ │ ├── ConsoleOptions.cs │ │ │ ├── ICommandDispatcher.cs │ │ │ ├── IConsole.cs │ │ │ ├── OptionsParser.cs │ │ │ ├── Remote │ │ │ ├── ConsoleRestartManager.cs │ │ │ ├── RemoteCommandDispatcher.cs │ │ │ ├── RemoteConsoleCommandLine.cs │ │ │ ├── RemoteConsoleHost.cs │ │ │ └── RemoteRuntimeServer.cs │ │ │ ├── Style.cs │ │ │ └── SuperConsole.cs │ ├── Interpreter │ │ ├── BranchLabel.cs │ │ ├── ILightCallSiteBinder.cs │ │ ├── Instructions │ │ │ ├── AddInstruction.cs │ │ │ ├── ArrayOperations.cs │ │ │ ├── CallInstruction.Generated.cs │ │ │ ├── CallInstruction.cs │ │ │ ├── ControlFlowInstructions.cs │ │ │ ├── DivInstruction.cs │ │ │ ├── DynamicInstructionN.cs │ │ │ ├── DynamicInstructions.Generated.cs │ │ │ ├── DynamicSplatInstruction.cs │ │ │ ├── EqualInstruction.cs │ │ │ ├── FieldOperations.cs │ │ │ ├── GreaterThanInstruction.cs │ │ │ ├── Instruction.cs │ │ │ ├── InstructionFactory.cs │ │ │ ├── InstructionList.cs │ │ │ ├── LabelInfo.cs │ │ │ ├── LessThanInstruction.cs │ │ │ ├── LocalAccess.cs │ │ │ ├── NotEqualInstruction.cs │ │ │ ├── NumericConvertInstruction.cs │ │ │ ├── StackOperations.cs │ │ │ └── TypeOperations.cs │ │ ├── InterpretedFrame.cs │ │ ├── Interpreter.cs │ │ ├── LightCompiler.cs │ │ ├── LightDelegateCreator.cs │ │ ├── LightLambda.Generated.cs │ │ ├── LightLambda.cs │ │ ├── LightLambdaClosureVisitor.cs │ │ ├── LocalVariables.cs │ │ ├── LoopCompiler.cs │ │ └── RuntimeVariables.cs │ ├── KeyboardInterruptException.cs │ ├── Microsoft.Dynamic.csproj │ ├── Microsoft.Scripting.txt │ ├── MultiRuntimeAwareAttribute.cs │ ├── MutableTuple.cs │ ├── PerfTrack.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Runtime │ │ ├── AmbiguousFileNameException.cs │ │ ├── ArgumentArray.cs │ │ ├── AssemblyTypeNames.cs │ │ ├── BinderOps.cs │ │ ├── BinderType.cs │ │ ├── BindingRestrictionsHelpers.cs │ │ ├── CallTargets.cs │ │ ├── CallTypes.cs │ │ ├── Cast.Generated.cs │ │ ├── Cast.cs │ │ ├── CodeDomCodeGen.cs │ │ ├── CompilerContext.cs │ │ ├── CustomStringDictionary.cs │ │ ├── DelegateInfo.cs │ │ ├── DelegateSignatureInfo.cs │ │ ├── DlrCachedCodeAttribute.cs │ │ ├── DocumentationAttribute.cs │ │ ├── DynamicDelegateCreator.cs │ │ ├── DynamicNull.cs │ │ ├── ExceptionHelpers.cs │ │ ├── ExplicitConversionMethodAttribute.cs │ │ ├── Extensible.cs │ │ ├── ExtensionTypeAttribute.cs │ │ ├── ExtraKeyEnumerator.cs │ │ ├── Generator.cs │ │ ├── IConvertibleMetaObject.cs │ │ ├── ICustomScriptCodeData.cs │ │ ├── IMembersList.cs │ │ ├── IRestrictedMetaObject.cs │ │ ├── ISlice.cs │ │ ├── IdDispenser.cs │ │ ├── ImplicitConversionMethodAttribute.cs │ │ ├── LanguageBoundTextContentProvider.cs │ │ ├── LegacyScriptCode.cs │ │ ├── LightExceptions.cs │ │ ├── LightThrowingAttribute.cs │ │ ├── LocalsDictionary.cs │ │ ├── MetaObjectExtensions.cs │ │ ├── ModuleChangeEventArgs.cs │ │ ├── ModuleChangeEventType.cs │ │ ├── NullTextContentProvider.cs │ │ ├── OperationFailed.cs │ │ ├── OperatorSlotAttribute.cs │ │ ├── PositionTrackingWriter.cs │ │ ├── PropertyMethodAttribute.cs │ │ ├── ReflectionCache.cs │ │ ├── RestrictedMetaObject.cs │ │ ├── ReturnFixer.cs │ │ ├── SavableScriptCode.cs │ │ ├── ScriptingRuntimeHelpers.cs │ │ ├── SourceStringContentProvider.cs │ │ ├── StaticExtensionMethodAttribute.cs │ │ ├── TokenizerBuffer.cs │ │ └── Uninitialized.cs │ ├── SerializationStubs.cs │ ├── SourceFileContentProvider.cs │ ├── StringExtensions.cs │ ├── Utils │ │ ├── ArrayUtils.cs │ │ ├── Assert.cs │ │ ├── CacheDict.cs │ │ ├── CheckedDictionaryEnumerator.cs │ │ ├── CollectionExtensions.cs │ │ ├── CollectionUtils.cs │ │ ├── ContractUtils.cs │ │ ├── CopyOnWriteList.cs │ │ ├── DictionaryUnionEnumerator.cs │ │ ├── DynamicUtils.cs │ │ ├── EnumUtils.cs │ │ ├── ExceptionFactory.Generated.cs │ │ ├── ExceptionUtils.cs │ │ ├── HybridReferenceDictionary.cs │ │ ├── IOUtils.cs │ │ ├── ListEqualityComparer.cs │ │ ├── MathUtils.cs │ │ ├── MonitorUtils.cs │ │ ├── Publisher.cs │ │ ├── ReferenceEqualityComparer.cs │ │ ├── ReflectionUtils.cs │ │ ├── StringUtils.cs │ │ ├── SynchronizedDictionary.cs │ │ ├── ThreadLocal.cs │ │ ├── ThreadingUtils.cs │ │ ├── TypeMemberCache.cs │ │ ├── TypeUtils.cs │ │ ├── ValueArray.cs │ │ ├── WeakCollection.cs │ │ ├── WeakDictionary.cs │ │ └── WeakHandle.cs │ └── Xaml │ │ └── DynamicXamlReader.cs ├── Microsoft.Scripting.Metadata │ ├── ClrStubs.cs │ ├── MemoryBlock.cs │ ├── MemoryMapping.V4.cs │ ├── MemoryReader.cs │ ├── MetadataExtensions.cs │ ├── MetadataImport.cs │ ├── MetadataName.cs │ ├── MetadataServices.cs │ ├── MetadataTableEnumerator.CCI.cs │ ├── MetadataTableImplementations.cs │ ├── MetadataTables.CCI.cs │ ├── MetadataTables.cs │ ├── Microsoft.Scripting.Metadata.csproj │ ├── PEFileStructures.cs │ └── Properties │ │ └── AssemblyInfo.cs └── Microsoft.Scripting │ ├── ArgumentTypeException.cs │ ├── AssemblyLoadedEventArgs.cs │ ├── CompilerOptions.cs │ ├── ErrorSink.cs │ ├── GlobalSuppressions.cs │ ├── Hosting │ ├── CompiledCode.cs │ ├── Configuration │ │ ├── LanguageElement.cs │ │ ├── LanguageElementCollection.cs │ │ ├── OptionElement.cs │ │ ├── OptionElementCollection.cs │ │ └── Section.cs │ ├── DocumentationOperations.cs │ ├── ErrorListener.cs │ ├── ErrorListenerProxy.cs │ ├── ErrorSinkProxyListener.cs │ ├── ExceptionOperations.cs │ ├── LanguageSetup.cs │ ├── MemberDoc.cs │ ├── MemberKind.cs │ ├── ObjectOperations.cs │ ├── OverloadDoc.cs │ ├── ParameterDoc.cs │ ├── ParameterFlags.cs │ ├── Providers │ │ └── HostingHelpers.cs │ ├── ScriptEngine.cs │ ├── ScriptHost.cs │ ├── ScriptHostProxy.cs │ ├── ScriptIO.cs │ ├── ScriptRuntime.cs │ ├── ScriptRuntimeSetup.cs │ ├── ScriptScope.cs │ ├── ScriptSource.cs │ └── TokenCategorizer.cs │ ├── IndexSpan.cs │ ├── InvalidImplementationException.cs │ ├── LanguageOptions.cs │ ├── Microsoft.Scripting.csproj │ ├── PlatformAdaptationLayer.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Runtime │ ├── ContextId.cs │ ├── DlrConfiguration.cs │ ├── DocumentationProvider.cs │ ├── DynamicOperations.Generated.cs │ ├── DynamicOperations.cs │ ├── DynamicRuntimeHostingProvider.cs │ ├── DynamicStackFrame.cs │ ├── InvariantContext.cs │ ├── LanguageBoundTextContentProvider.cs │ ├── LanguageContext.cs │ ├── NotNullAttribute.cs │ ├── ObjectDictionaryExpando.cs │ ├── ParamDictionaryAttribute.cs │ ├── ParserSink.cs │ ├── Scope.cs │ ├── ScopeExtension.cs │ ├── ScopeStorage.cs │ ├── ScriptCode.cs │ ├── ScriptDomainManager.cs │ ├── SharedIO.cs │ ├── SourceStringContentProvider.cs │ ├── StreamContentProvider.cs │ ├── StringDictionaryExpando.cs │ ├── TokenInfo.cs │ ├── TokenTriggers.cs │ └── TokenizerService.cs │ ├── ScriptCodeParseResult.cs │ ├── Severity.cs │ ├── SourceCodeKind.cs │ ├── SourceCodeReader.cs │ ├── SourceFileContentProvider.cs │ ├── SourceLocation.cs │ ├── SourceSpan.cs │ ├── SourceUnit.cs │ ├── SyntaxErrorException.cs │ ├── TextContentProvider.cs │ ├── TokenCategory.cs │ └── Utils │ ├── ArrayUtils.cs │ ├── AssemblyQualifiedTypeName.cs │ ├── Assert.cs │ ├── CollectionExtensions.cs │ ├── ConsoleInputStream.cs │ ├── ConsoleStreamType.cs │ ├── ContractUtils.cs │ ├── DelegateUtils.cs │ ├── ExceptionFactory.Generated.cs │ ├── ExceptionUtils.cs │ ├── ExpressionUtils.cs │ ├── NativeMethods.cs │ ├── ReflectionUtils.cs │ └── TextStream.cs ├── Tests ├── ClrAssembly │ ├── ClrAssembly.csproj │ ├── Src │ │ ├── TypeSamples.cs │ │ ├── baseclasscs.cs │ │ ├── baseclassvb.vb │ │ ├── defaultmemberscs.cs │ │ ├── defaultmembersvb.vb │ │ ├── delegatedefinitions.cs │ │ ├── dynamicobjmodel.cs │ │ ├── eventdefinitions.cs │ │ ├── fieldtests.cs │ │ ├── indexerdefinitionscs.cs │ │ ├── indexerdefinitionsvb.vb │ │ ├── loadexception.cs │ │ ├── loadorder │ │ │ ├── loadorder_1a.cs │ │ │ ├── loadorder_1b.cs │ │ │ ├── loadorder_1c.cs │ │ │ ├── loadorder_2.cs │ │ │ ├── loadorder_2a.cs │ │ │ ├── loadorder_2b.cs │ │ │ ├── loadorder_2c.cs │ │ │ ├── loadorder_2d.cs │ │ │ ├── loadorder_2e.cs │ │ │ ├── loadorder_2f.cs │ │ │ ├── loadorder_2g.cs │ │ │ ├── loadorder_2h.cs │ │ │ ├── loadorder_3.cs │ │ │ ├── loadorder_3a.cs │ │ │ ├── loadorder_3b.cs │ │ │ ├── loadorder_3c.cs │ │ │ ├── loadorder_3d.cs │ │ │ ├── loadorder_3e.cs │ │ │ ├── loadorder_3f.cs │ │ │ ├── loadorder_3g.cs │ │ │ ├── loadorder_3h.cs │ │ │ ├── loadorder_3i.cs │ │ │ ├── loadorder_4.cs │ │ │ ├── loadorder_4a.cs │ │ │ ├── loadorder_4b.cs │ │ │ ├── loadorder_4c.cs │ │ │ ├── loadorder_5.cs │ │ │ ├── loadorder_5a.cs │ │ │ ├── loadorder_5b.cs │ │ │ ├── loadorder_5c.cs │ │ │ ├── loadorder_6a.cs │ │ │ ├── loadorder_6b.cs │ │ │ ├── loadorder_7a.cs │ │ │ ├── loadorder_7b.cs │ │ │ └── loadorder_7c.cs │ │ ├── loadtypesample.cs │ │ ├── methodargs.cs │ │ ├── missingtype.cs │ │ ├── operators.cs │ │ ├── propertydefinitions.cs │ │ ├── returnvalues.cs │ │ ├── testsupport.cs │ │ ├── typeforwardee1.cs │ │ ├── typeforwardee2.cs │ │ ├── typeforwardee3.cs │ │ ├── typeforwarder1.cs │ │ ├── typeforwarder2.il │ │ ├── typeforwarder3.cs │ │ └── userdefinedconversions.cs │ └── dummy.cs ├── DlrComLibrary │ ├── DispEvents.cpp │ ├── DispEvents.h │ ├── DispEvents.rgs │ ├── DlrComLibrary.cpp │ ├── DlrComLibrary.def │ ├── DlrComLibrary.idl │ ├── DlrComLibrary.rc │ ├── DlrComLibrary.rgs │ ├── DlrComLibrary.sln │ ├── DlrComLibrary.vcxproj │ ├── DlrComLibrary.vcxproj.filters │ ├── DlrComLibraryPS.vcxproj │ ├── DlrComLibraryPS.vcxproj.filters │ ├── DlrComLibraryps.def │ ├── DlrComServer.cpp │ ├── DlrComServer.h │ ├── DlrComServer.rgs │ ├── DlrComStopwatch.cpp │ ├── DlrComStopwatch.h │ ├── DlrComStopwatch.rgs │ ├── DlrUniversalObj.cpp │ ├── DlrUniversalObj.h │ ├── DlrUniversalObj.rgs │ ├── HiddenMembers.cpp │ ├── HiddenMembers.h │ ├── HiddenMembers.rgs │ ├── InOutParams.cpp │ ├── InOutParams.h │ ├── InOutParams.rgs │ ├── IndexedProp.cpp │ ├── IndexedProp.h │ ├── IndexedProp.rgs │ ├── MultipleParams.cpp │ ├── MultipleParams.h │ ├── MultipleParams.rgs │ ├── NoTypeInfo.cpp │ ├── NoTypeInfo.h │ ├── NoTypeInfo.rgs │ ├── NonDispatch.cpp │ ├── NonDispatch.h │ ├── NonDispatch.rgs │ ├── OptionalParams.cpp │ ├── OptionalParams.h │ ├── OptionalParams.rgs │ ├── OutParams.cpp │ ├── OutParams.h │ ├── OutParams.rgs │ ├── ParamsInRetval.cpp │ ├── ParamsInRetval.h │ ├── ParamsInRetval.rgs │ ├── Properties.cpp │ ├── Properties.h │ ├── Properties.rgs │ ├── ProvidesClassInfo.cpp │ ├── ProvidesClassInfo.h │ ├── ProvidesClassInfo.rgs │ ├── ReadMe.txt │ ├── Resource.h │ ├── ReturnValues.cpp │ ├── ReturnValues.h │ ├── ReturnValues.rgs │ ├── Setup │ │ ├── Setup.vdproj │ │ └── Setup.vdproj.vspscc │ ├── SimpleErrors.cpp │ ├── SimpleErrors.h │ ├── SimpleErrors.rgs │ ├── _IDispEventsEvents_CP.h │ ├── _IDlrComServerEvents_CP.h │ ├── dllmain.cpp │ ├── dllmain.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── HostingTest │ ├── CodeType.cs │ ├── CompiledCodeTest.cs │ ├── CompiledCodeTestHelper.cs │ ├── HAPITestBase.cs │ ├── HostingTest.csproj │ ├── LangSetup.cs │ ├── Log.cs │ ├── ObjectOperationsTest.cs │ ├── ObjectOperationsTestHelper.cs │ ├── PreDefinedCodeSnippets.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PythonCodeSnippets.cs │ ├── RubyCodeSnippets.cs │ ├── ScriptEngineTest.cs │ ├── ScriptEngineTestHelper.cs │ ├── ScriptHostBasicSubTest.cs │ ├── ScriptHostTest.cs │ ├── ScriptHostTestHelper.cs │ ├── ScriptIOTest.cs │ ├── ScriptIOTestHelper.cs │ ├── ScriptRuntimeSetupTest.cs │ ├── ScriptRuntimeSetupTestHelper.cs │ ├── ScriptRuntimeTest.cs │ ├── ScriptRuntimeTestHelper.cs │ ├── ScriptScopeDictionary.cs │ ├── ScriptScopeTest.cs │ ├── ScriptScopeTestHelper.cs │ ├── ScriptSourceTest.cs │ ├── ScriptSourceTestHelper.cs │ ├── StandardTestPaths.cs │ ├── StandardTestStrings.cs │ ├── TestHelpers.cs │ └── TestHost.cs ├── Metadata │ ├── AssemblyList.cs │ ├── Metadata.csproj │ ├── MetadataTablesExtensions.cs │ ├── NamespaceTree.cs │ ├── NamespaceTree_Reflection.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReflectionExtensions.cs │ ├── RubyModules.cs │ ├── Scripts │ │ └── coverage.cmd │ ├── Sequence.cs │ ├── TestCases.cs │ ├── TestFiles │ │ └── 1.exe │ ├── TypeNestings.cs │ └── UnitTests.cs ├── Microsoft.Dynamic.Test │ ├── InterpreterTest.cs │ ├── LightExceptionTests.cs │ ├── Microsoft.Dynamic.Test.csproj │ ├── TestReflectionServices.cs │ ├── TestTuple.cs │ └── Utils │ │ └── MathUtilsTest.cs └── Microsoft.Scripting.Test │ ├── Microsoft.Scripting.Test.csproj │ └── Utils │ └── ArrayUtilsTest.cs └── make.ps1 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/.gitignore -------------------------------------------------------------------------------- /.vsts-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/.vsts-ci.yml -------------------------------------------------------------------------------- /Build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Build.proj -------------------------------------------------------------------------------- /Build/After.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Build/After.targets -------------------------------------------------------------------------------- /Build/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Build/Key.snk -------------------------------------------------------------------------------- /Build/Tasks.Targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Build/Tasks.Targets -------------------------------------------------------------------------------- /Build/net462.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Build/net462.props -------------------------------------------------------------------------------- /Build/net6.0.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Build/net6.0.props -------------------------------------------------------------------------------- /Build/net8.0.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Build/net8.0.props -------------------------------------------------------------------------------- /Build/net9.0.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Build/net9.0.props -------------------------------------------------------------------------------- /Build/netstandard2.0.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Build/netstandard2.0.props -------------------------------------------------------------------------------- /Build/steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Build/steps.yml -------------------------------------------------------------------------------- /CurrentVersion.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/CurrentVersion.props -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Dlr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Dlr.sln -------------------------------------------------------------------------------- /Docs/dlr-overview.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Docs/dlr-overview.doc -------------------------------------------------------------------------------- /Docs/dlr-overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Docs/dlr-overview.pdf -------------------------------------------------------------------------------- /Docs/dlr-spec-hosting.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Docs/dlr-spec-hosting.doc -------------------------------------------------------------------------------- /Docs/dlr-spec-hosting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Docs/dlr-spec-hosting.pdf -------------------------------------------------------------------------------- /Docs/expr-tree-spec.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Docs/expr-tree-spec.doc -------------------------------------------------------------------------------- /Docs/expr-tree-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Docs/expr-tree-spec.pdf -------------------------------------------------------------------------------- /Docs/library-authors-introduction.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Docs/library-authors-introduction.doc -------------------------------------------------------------------------------- /Docs/library-authors-introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Docs/library-authors-introduction.pdf -------------------------------------------------------------------------------- /Docs/sites-binders-dynobj-interop.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Docs/sites-binders-dynobj-interop.doc -------------------------------------------------------------------------------- /Docs/sites-binders-dynobj-interop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Docs/sites-binders-dynobj-interop.pdf -------------------------------------------------------------------------------- /Docs/sympl.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Docs/sympl.doc -------------------------------------------------------------------------------- /Docs/sympl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Docs/sympl.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/NuGet.config -------------------------------------------------------------------------------- /Package/nuget/DynamicLanguageRuntime.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Package/nuget/DynamicLanguageRuntime.nuspec -------------------------------------------------------------------------------- /Package/nuget/NuGet.Packaging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Package/nuget/NuGet.Packaging.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/README.md -------------------------------------------------------------------------------- /Samples/Hosting/Scenarios/Hosting Scenarios.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/Hosting/Scenarios/Hosting Scenarios.csproj -------------------------------------------------------------------------------- /Samples/Hosting/Scenarios/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/Hosting/Scenarios/Program.cs -------------------------------------------------------------------------------- /Samples/Hosting/Scenarios/merlin_web_page_code_behind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/Hosting/Scenarios/merlin_web_page_code_behind.py -------------------------------------------------------------------------------- /Samples/Hosting/Scenarios/register_user_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/Hosting/Scenarios/register_user_commands.py -------------------------------------------------------------------------------- /Samples/Hosting/Scenarios/user_commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/Hosting/Scenarios/user_commands.rb -------------------------------------------------------------------------------- /Samples/sympl/csharp/DlrHosting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/csharp/DlrHosting.cs -------------------------------------------------------------------------------- /Samples/sympl/csharp/ETGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/csharp/ETGen.cs -------------------------------------------------------------------------------- /Samples/sympl/csharp/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/csharp/Lexer.cs -------------------------------------------------------------------------------- /Samples/sympl/csharp/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/csharp/Parser.cs -------------------------------------------------------------------------------- /Samples/sympl/csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/csharp/Program.cs -------------------------------------------------------------------------------- /Samples/sympl/csharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/csharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/sympl/csharp/Runtime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/csharp/Runtime.cs -------------------------------------------------------------------------------- /Samples/sympl/csharp/Sympl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/csharp/Sympl.cs -------------------------------------------------------------------------------- /Samples/sympl/csharp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/csharp/app.config -------------------------------------------------------------------------------- /Samples/sympl/csharp/sympl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/csharp/sympl.csproj -------------------------------------------------------------------------------- /Samples/sympl/csharp/test.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/csharp/test.bsl -------------------------------------------------------------------------------- /Samples/sympl/examples/indexing.sympl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/examples/indexing.sympl -------------------------------------------------------------------------------- /Samples/sympl/examples/lists.sympl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/examples/lists.sympl -------------------------------------------------------------------------------- /Samples/sympl/examples/ops.sympl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/examples/ops.sympl -------------------------------------------------------------------------------- /Samples/sympl/examples/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/examples/test.bat -------------------------------------------------------------------------------- /Samples/sympl/examples/test.sympl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/examples/test.sympl -------------------------------------------------------------------------------- /Samples/sympl/examples/test_python.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/examples/test_python.bat -------------------------------------------------------------------------------- /Samples/sympl/python/etgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/python/etgen.py -------------------------------------------------------------------------------- /Samples/sympl/python/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/python/lexer.py -------------------------------------------------------------------------------- /Samples/sympl/python/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/python/parser.py -------------------------------------------------------------------------------- /Samples/sympl/python/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/python/runtime.py -------------------------------------------------------------------------------- /Samples/sympl/python/sympl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/python/sympl.py -------------------------------------------------------------------------------- /Samples/sympl/python/test.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/python/test.bsl -------------------------------------------------------------------------------- /Samples/sympl/python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Samples/sympl/python/test.py -------------------------------------------------------------------------------- /Src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Directory.Build.props -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ActionBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ActionBinder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Argument.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ArgumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ArgumentType.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/BoundMemberTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/BoundMemberTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/CallSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/CallSignature.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ActualArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ActualArguments.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ApplicableCandidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ApplicableCandidate.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ArgumentBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ArgumentBinding.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/BindingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/BindingResult.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/BindingTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/BindingTarget.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ByRefReturnBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ByRefReturnBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/CallFailure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/CallFailure.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/CallFailureReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/CallFailureReason.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/Candidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/Candidate.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/CandidateSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/CandidateSet.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ConversionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ConversionResult.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/DefaultArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/DefaultArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/DefaultOverloadResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/DefaultOverloadResolver.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/InstanceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/InstanceBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/KeywordArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/KeywordArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/KeywordConstructorReturnBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/KeywordConstructorReturnBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/MethodCandidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/MethodCandidate.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/NarrowingLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/NarrowingLevel.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/OutArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/OutArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/OverloadInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/OverloadInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/OverloadResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/OverloadResolver.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/OverloadResolverFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/OverloadResolverFactory.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ParameterMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ParameterMapping.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ParameterWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ParameterWrapper.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ParamsArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ParamsArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ParamsDictArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ParamsDictArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ReferenceArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ReferenceArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/RestrictedArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/RestrictedArguments.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ReturnBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ReturnBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/ReturnReferenceArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/ReturnReferenceArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/SimpleArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/SimpleArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Calls/TypeInferer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Calls/TypeInferer.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ComboActionRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ComboActionRewriter.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ComboBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ComboBinder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ConditionalBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ConditionalBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ConstructorTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ConstructorTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ConversionResultKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ConversionResultKind.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/CustomTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/CustomTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/DefaultBinder.Conversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/DefaultBinder.Conversions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/DefaultBinder.DeleteMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/DefaultBinder.DeleteMember.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/DefaultBinder.GetMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/DefaultBinder.GetMember.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/DefaultBinder.Invoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/DefaultBinder.Invoke.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/DefaultBinder.MethodCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/DefaultBinder.MethodCalls.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/DefaultBinder.Operations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/DefaultBinder.Operations.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/DefaultBinder.SetMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/DefaultBinder.SetMember.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/DefaultBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/DefaultBinder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/DynamicSiteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/DynamicSiteHelper.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ErrorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ErrorInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ErrorMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ErrorMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/EventTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/EventTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ExtensionBinaryOperationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ExtensionBinaryOperationBinder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ExtensionMethodTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ExtensionMethodTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ExtensionPropertyTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ExtensionPropertyTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ExtensionUnaryOperationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ExtensionUnaryOperationBinder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/FieldTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/FieldTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ILightExceptionBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ILightExceptionBinder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/Interceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/Interceptor.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/MemberGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/MemberGroup.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/MemberRequestKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/MemberRequestKind.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/MemberTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/MemberTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/MethodGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/MethodGroup.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/MethodTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/MethodTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/NamespaceTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/NamespaceTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/NestedTypeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/NestedTypeTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/NoSideEffectsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/NoSideEffectsAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/OperationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/OperationBinder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/OperationMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/OperationMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/OperatorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/OperatorInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/PropertyTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/PropertyTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/ReflectedPropertyTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/ReflectedPropertyTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/TopNamespaceTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/TopNamespaceTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/TrackerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/TrackerTypes.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/TypeGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/TypeGroup.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Actions/TypeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Actions/TypeTracker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/BinaryExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/BinaryExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/Block.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/BlockBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/BlockBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/ConstantExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/ConstantExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/DebugStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/DebugStatement.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/EmptyStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/EmptyStatements.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/ExpressionCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/ExpressionCollectionBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/FinallyFlowControlExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/FinallyFlowControlExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/FlowControlRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/FlowControlRewriter.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/GeneratorExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/GeneratorExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/GeneratorRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/GeneratorRewriter.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/ILightExceptionAwareExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/ILightExceptionAwareExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/IfStatementBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/IfStatementBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/IfStatementTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/IfStatementTest.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/LambdaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/LambdaBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/LambdaParameterRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/LambdaParameterRewriter.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/LightCheckAndThrowExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/LightCheckAndThrowExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/LightDynamicExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/LightDynamicExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/LightExceptionConvertingExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/LightExceptionConvertingExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/LightExceptionRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/LightExceptionRewriter.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/LightLambdaExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/LightLambdaExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/LightThrowExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/LightThrowExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/LoopStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/LoopStatement.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/MethodCallExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/MethodCallExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/NewArrayExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/NewArrayExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/NewExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/NewExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/SourceFileInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/SourceFileInformation.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/TryStatementBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/TryStatementBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/UnaryExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/UnaryExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/Utils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Ast/YieldExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Ast/YieldExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/BoolArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/BoolArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/BoundDispEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/BoundDispEvent.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/CollectionExtensions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComBinder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComBinderHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComBinderHelpers.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComClassMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComClassMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComDispIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComDispIds.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComEventDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComEventDesc.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComEventSink.netcoreapp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComEventSink.netcoreapp.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComEventSink.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComEventSink.netfx.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComEventSinkProxy.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComEventSinkProxy.netfx.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComEventSinksContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComEventSinksContainer.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComEventsMethod.netcoreapp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComEventsMethod.netcoreapp.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComFallbackMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComFallbackMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComHresults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComHresults.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComInterop.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComInvokeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComInvokeAction.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComInvokeBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComInvokeBinder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComMethodDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComMethodDesc.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComParamDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComParamDesc.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComRuntimeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComRuntimeHelpers.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComType.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComTypeClassDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComTypeClassDesc.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComTypeDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComTypeDesc.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComTypeEnumDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComTypeEnumDesc.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComTypeLibDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComTypeLibDesc.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComTypeLibInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComTypeLibInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ComTypeLibMemberDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ComTypeLibMemberDesc.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ConversionArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ConversionArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ConvertArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ConvertArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ConvertibleArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ConvertibleArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/CurrencyArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/CurrencyArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/DateTimeArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/DateTimeArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/DispCallable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/DispCallable.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/DispCallableMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/DispCallableMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/DispatchArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/DispatchArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ErrorArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ErrorArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/Errors.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/ExcepInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/ExcepInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/Helpers.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/IDispatchComObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/IDispatchComObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/IDispatchMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/IDispatchMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/IPseudoComObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/IPseudoComObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/NullArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/NullArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/SimpleArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/SimpleArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/SplatCallSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/SplatCallSite.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/StringArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/StringArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/TypeEnumMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/TypeEnumMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/TypeLibInfoMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/TypeLibInfoMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/TypeLibMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/TypeLibMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/TypeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/TypeUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/UnknownArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/UnknownArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/VarEnumSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/VarEnumSelector.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/Variant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/Variant.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/VariantArgBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/VariantArgBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/VariantArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/VariantArray.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/ComInterop/VariantBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/ComInterop/VariantBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/DebugOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/DebugOptions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/CollectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/CollectionUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/CompilerServices/DebugLambdaInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/CompilerServices/DebugLambdaInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/CompilerServices/IDebugCompilerSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/CompilerServices/IDebugCompilerSupport.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DebugContext.GeneratorLoopProc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DebugContext.GeneratorLoopProc.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DebugContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DebugContext.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DebugFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DebugFrame.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DebugGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DebugGenerator.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DebugInfoRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DebugInfoRewriter.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DebugMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DebugMode.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DebugSourceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DebugSourceFile.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DebugSourceSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DebugSourceSpan.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DebugThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DebugThread.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DebuggableLambdaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DebuggableLambdaBuilder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DefaultRuntimeVariablesImpl/DebugRuntimeVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DefaultRuntimeVariablesImpl/DebugRuntimeVariables.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DefaultRuntimeVariablesImpl/DefaultDebugThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DefaultRuntimeVariablesImpl/DefaultDebugThread.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DefaultRuntimeVariablesImpl/DefaultDebugThreadFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DefaultRuntimeVariablesImpl/DefaultDebugThreadFactory.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/DelegateHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/DelegateHelpers.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/ForceToGeneratorLoopException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/ForceToGeneratorLoopException.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/FunctionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/FunctionInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/IDebugCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/IDebugCallback.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/InvokeTargets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/InvokeTargets.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/LambdaWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/LambdaWalker.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/Microsoft.Scripting.Debugging.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/Microsoft.Scripting.Debugging.Generated.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/RuntimeOps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/RuntimeOps.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/RuntimeVariablesSupport/IDebugRuntimeVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/RuntimeVariablesSupport/IDebugRuntimeVariables.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/RuntimeVariablesSupport/IDebugThreadFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/RuntimeVariablesSupport/IDebugThreadFactory.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/ScopedRuntimeVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/ScopedRuntimeVariables.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/ThreadLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/ThreadLocal.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/TraceEventKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/TraceEventKind.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/TracePipeline/ITraceCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/TracePipeline/ITraceCallback.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/TracePipeline/ITracePipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/TracePipeline/ITracePipeline.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/TracePipeline/TracePipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/TracePipeline/TracePipeline.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Debugging/VariableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Debugging/VariableInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/AssemblyGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/AssemblyGen.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/CompilerHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/CompilerHelpers.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/ConstantCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/ConstantCheck.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/DelegateHelpers.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/DelegateHelpers.Generated.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/DelegateHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/DelegateHelpers.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/DynamicILGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/DynamicILGen.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/FieldBuilderExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/FieldBuilderExpression.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/IExpressionSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/IExpressionSerializable.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/ILGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/ILGen.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/KeyedQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/KeyedQueue.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/MethodSignatureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/MethodSignatureInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/Snippets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/Snippets.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/SymbolGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/SymbolGuids.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/ToDiskRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/ToDiskRewriter.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Generation/TypeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Generation/TypeGen.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/BasicConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/BasicConsole.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/CommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/CommandLine.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/ConsoleHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/ConsoleHost.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/ConsoleHostOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/ConsoleHostOptions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/ConsoleHostOptionsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/ConsoleHostOptionsParser.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/ConsoleOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/ConsoleOptions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/ICommandDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/ICommandDispatcher.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/IConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/IConsole.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/OptionsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/OptionsParser.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/Remote/ConsoleRestartManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/Remote/ConsoleRestartManager.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/Remote/RemoteCommandDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/Remote/RemoteCommandDispatcher.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/Remote/RemoteConsoleCommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/Remote/RemoteConsoleCommandLine.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/Remote/RemoteConsoleHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/Remote/RemoteConsoleHost.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/Remote/RemoteRuntimeServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/Remote/RemoteRuntimeServer.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/Style.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Hosting/Shell/SuperConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Hosting/Shell/SuperConsole.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/BranchLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/BranchLabel.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/ILightCallSiteBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/ILightCallSiteBinder.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/AddInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/AddInstruction.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/ArrayOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/ArrayOperations.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/CallInstruction.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/CallInstruction.Generated.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/CallInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/CallInstruction.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/ControlFlowInstructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/ControlFlowInstructions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/DivInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/DivInstruction.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/DynamicInstructionN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/DynamicInstructionN.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/DynamicInstructions.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/DynamicInstructions.Generated.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/DynamicSplatInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/DynamicSplatInstruction.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/EqualInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/EqualInstruction.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/FieldOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/FieldOperations.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/GreaterThanInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/GreaterThanInstruction.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/Instruction.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/InstructionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/InstructionFactory.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/InstructionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/InstructionList.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/LabelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/LabelInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/LessThanInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/LessThanInstruction.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/LocalAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/LocalAccess.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/NotEqualInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/NotEqualInstruction.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/NumericConvertInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/NumericConvertInstruction.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/StackOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/StackOperations.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Instructions/TypeOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Instructions/TypeOperations.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/InterpretedFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/InterpretedFrame.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/Interpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/Interpreter.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/LightCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/LightCompiler.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/LightDelegateCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/LightDelegateCreator.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/LightLambda.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/LightLambda.Generated.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/LightLambda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/LightLambda.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/LightLambdaClosureVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/LightLambdaClosureVisitor.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/LocalVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/LocalVariables.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/LoopCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/LoopCompiler.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Interpreter/RuntimeVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Interpreter/RuntimeVariables.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/KeyboardInterruptException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/KeyboardInterruptException.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Microsoft.Dynamic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Microsoft.Dynamic.csproj -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Microsoft.Scripting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Microsoft.Scripting.txt -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/MultiRuntimeAwareAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/MultiRuntimeAwareAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/MutableTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/MutableTuple.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/PerfTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/PerfTrack.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/AmbiguousFileNameException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/AmbiguousFileNameException.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ArgumentArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ArgumentArray.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/AssemblyTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/AssemblyTypeNames.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/BinderOps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/BinderOps.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/BinderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/BinderType.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/BindingRestrictionsHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/BindingRestrictionsHelpers.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/CallTargets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/CallTargets.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/CallTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/CallTypes.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/Cast.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/Cast.Generated.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/Cast.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/CodeDomCodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/CodeDomCodeGen.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/CompilerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/CompilerContext.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/CustomStringDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/CustomStringDictionary.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/DelegateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/DelegateInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/DelegateSignatureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/DelegateSignatureInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/DlrCachedCodeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/DlrCachedCodeAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/DocumentationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/DocumentationAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/DynamicDelegateCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/DynamicDelegateCreator.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/DynamicNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/DynamicNull.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ExceptionHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ExceptionHelpers.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ExplicitConversionMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ExplicitConversionMethodAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/Extensible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/Extensible.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ExtensionTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ExtensionTypeAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ExtraKeyEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ExtraKeyEnumerator.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/Generator.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/IConvertibleMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/IConvertibleMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ICustomScriptCodeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ICustomScriptCodeData.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/IMembersList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/IMembersList.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/IRestrictedMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/IRestrictedMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ISlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ISlice.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/IdDispenser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/IdDispenser.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ImplicitConversionMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ImplicitConversionMethodAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/LanguageBoundTextContentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/LanguageBoundTextContentProvider.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/LegacyScriptCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/LegacyScriptCode.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/LightExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/LightExceptions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/LightThrowingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/LightThrowingAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/LocalsDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/LocalsDictionary.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/MetaObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/MetaObjectExtensions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ModuleChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ModuleChangeEventArgs.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ModuleChangeEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ModuleChangeEventType.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/NullTextContentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/NullTextContentProvider.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/OperationFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/OperationFailed.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/OperatorSlotAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/OperatorSlotAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/PositionTrackingWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/PositionTrackingWriter.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/PropertyMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/PropertyMethodAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ReflectionCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ReflectionCache.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/RestrictedMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/RestrictedMetaObject.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ReturnFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ReturnFixer.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/SavableScriptCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/SavableScriptCode.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/ScriptingRuntimeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/ScriptingRuntimeHelpers.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/SourceStringContentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/SourceStringContentProvider.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/StaticExtensionMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/StaticExtensionMethodAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/TokenizerBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/TokenizerBuffer.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Runtime/Uninitialized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Runtime/Uninitialized.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/SerializationStubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/SerializationStubs.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/SourceFileContentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/SourceFileContentProvider.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/StringExtensions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/ArrayUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/ArrayUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/Assert.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/CacheDict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/CacheDict.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/CheckedDictionaryEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/CheckedDictionaryEnumerator.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/CollectionExtensions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/CollectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/CollectionUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/ContractUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/ContractUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/CopyOnWriteList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/CopyOnWriteList.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/DictionaryUnionEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/DictionaryUnionEnumerator.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/DynamicUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/DynamicUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/EnumUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/EnumUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/ExceptionFactory.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/ExceptionFactory.Generated.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/ExceptionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/ExceptionUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/HybridReferenceDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/HybridReferenceDictionary.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/IOUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/IOUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/ListEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/ListEqualityComparer.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/MathUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/MonitorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/MonitorUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/Publisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/Publisher.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/ReferenceEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/ReferenceEqualityComparer.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/ReflectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/ReflectionUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/StringUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/SynchronizedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/SynchronizedDictionary.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/ThreadLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/ThreadLocal.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/ThreadingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/ThreadingUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/TypeMemberCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/TypeMemberCache.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/TypeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/TypeUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/ValueArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/ValueArray.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/WeakCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/WeakCollection.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/WeakDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/WeakDictionary.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Utils/WeakHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Utils/WeakHandle.cs -------------------------------------------------------------------------------- /Src/Microsoft.Dynamic/Xaml/DynamicXamlReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Dynamic/Xaml/DynamicXamlReader.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/ClrStubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/ClrStubs.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/MemoryBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/MemoryBlock.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/MemoryMapping.V4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/MemoryMapping.V4.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/MemoryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/MemoryReader.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/MetadataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/MetadataExtensions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/MetadataImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/MetadataImport.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/MetadataName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/MetadataName.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/MetadataServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/MetadataServices.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/MetadataTableEnumerator.CCI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/MetadataTableEnumerator.CCI.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/MetadataTableImplementations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/MetadataTableImplementations.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/MetadataTables.CCI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/MetadataTables.CCI.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/MetadataTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/MetadataTables.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/Microsoft.Scripting.Metadata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/Microsoft.Scripting.Metadata.csproj -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/PEFileStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/PEFileStructures.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting.Metadata/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting.Metadata/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/ArgumentTypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/ArgumentTypeException.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/AssemblyLoadedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/AssemblyLoadedEventArgs.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/CompilerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/CompilerOptions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/ErrorSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/ErrorSink.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/CompiledCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/CompiledCode.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/Configuration/LanguageElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/Configuration/LanguageElement.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/Configuration/LanguageElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/Configuration/LanguageElementCollection.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/Configuration/OptionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/Configuration/OptionElement.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/Configuration/OptionElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/Configuration/OptionElementCollection.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/Configuration/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/Configuration/Section.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/DocumentationOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/DocumentationOperations.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ErrorListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ErrorListener.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ErrorListenerProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ErrorListenerProxy.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ErrorSinkProxyListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ErrorSinkProxyListener.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ExceptionOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ExceptionOperations.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/LanguageSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/LanguageSetup.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/MemberDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/MemberDoc.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/MemberKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/MemberKind.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ObjectOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ObjectOperations.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/OverloadDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/OverloadDoc.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ParameterDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ParameterDoc.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ParameterFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ParameterFlags.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/Providers/HostingHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/Providers/HostingHelpers.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ScriptEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ScriptEngine.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ScriptHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ScriptHost.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ScriptHostProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ScriptHostProxy.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ScriptIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ScriptIO.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ScriptRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ScriptRuntime.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ScriptRuntimeSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ScriptRuntimeSetup.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ScriptScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ScriptScope.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/ScriptSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/ScriptSource.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Hosting/TokenCategorizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Hosting/TokenCategorizer.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/IndexSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/IndexSpan.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/InvalidImplementationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/InvalidImplementationException.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/LanguageOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/LanguageOptions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Microsoft.Scripting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Microsoft.Scripting.csproj -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/PlatformAdaptationLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/PlatformAdaptationLayer.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/ContextId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/ContextId.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/DlrConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/DlrConfiguration.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/DocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/DocumentationProvider.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/DynamicOperations.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/DynamicOperations.Generated.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/DynamicOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/DynamicOperations.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/DynamicRuntimeHostingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/DynamicRuntimeHostingProvider.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/DynamicStackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/DynamicStackFrame.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/InvariantContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/InvariantContext.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/LanguageBoundTextContentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/LanguageBoundTextContentProvider.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/LanguageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/LanguageContext.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/NotNullAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/NotNullAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/ObjectDictionaryExpando.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/ObjectDictionaryExpando.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/ParamDictionaryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/ParamDictionaryAttribute.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/ParserSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/ParserSink.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/Scope.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/ScopeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/ScopeExtension.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/ScopeStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/ScopeStorage.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/ScriptCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/ScriptCode.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/ScriptDomainManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/ScriptDomainManager.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/SharedIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/SharedIO.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/SourceStringContentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/SourceStringContentProvider.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/StreamContentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/StreamContentProvider.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/StringDictionaryExpando.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/StringDictionaryExpando.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/TokenInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/TokenInfo.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/TokenTriggers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/TokenTriggers.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Runtime/TokenizerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Runtime/TokenizerService.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/ScriptCodeParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/ScriptCodeParseResult.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Severity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Severity.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/SourceCodeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/SourceCodeKind.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/SourceCodeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/SourceCodeReader.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/SourceFileContentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/SourceFileContentProvider.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/SourceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/SourceLocation.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/SourceSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/SourceSpan.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/SourceUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/SourceUnit.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/SyntaxErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/SyntaxErrorException.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/TextContentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/TextContentProvider.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/TokenCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/TokenCategory.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/ArrayUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/ArrayUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/AssemblyQualifiedTypeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/AssemblyQualifiedTypeName.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/Assert.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/CollectionExtensions.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/ConsoleInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/ConsoleInputStream.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/ConsoleStreamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/ConsoleStreamType.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/ContractUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/ContractUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/DelegateUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/DelegateUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/ExceptionFactory.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/ExceptionFactory.Generated.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/ExceptionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/ExceptionUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/ExpressionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/ExpressionUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/NativeMethods.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/ReflectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/ReflectionUtils.cs -------------------------------------------------------------------------------- /Src/Microsoft.Scripting/Utils/TextStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Src/Microsoft.Scripting/Utils/TextStream.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/ClrAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/ClrAssembly.csproj -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/TypeSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/TypeSamples.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/baseclasscs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/baseclasscs.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/baseclassvb.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/baseclassvb.vb -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/defaultmemberscs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/defaultmemberscs.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/defaultmembersvb.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/defaultmembersvb.vb -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/delegatedefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/delegatedefinitions.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/dynamicobjmodel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/dynamicobjmodel.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/eventdefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/eventdefinitions.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/fieldtests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/fieldtests.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/indexerdefinitionscs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/indexerdefinitionscs.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/indexerdefinitionsvb.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/indexerdefinitionsvb.vb -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadexception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadexception.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_1a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_1a.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_1b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_1b.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_1c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_1c.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_2.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_2a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_2a.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_2b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_2b.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_2c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_2c.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_2d.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_2e.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_2e.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_2f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_2f.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_2g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_2g.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_2h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_2h.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_3.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_3a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_3a.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_3b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_3b.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_3c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_3c.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_3d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_3d.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_3e.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_3e.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_3f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_3f.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_3g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_3g.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_3h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_3h.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_3i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_3i.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_4.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_4a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_4a.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_4b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_4b.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_4c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_4c.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_5.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_5a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_5a.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_5b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_5b.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_5c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_5c.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_6a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_6a.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_6b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_6b.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_7a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_7a.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_7b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_7b.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadorder/loadorder_7c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadorder/loadorder_7c.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/loadtypesample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/loadtypesample.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/methodargs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/methodargs.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/missingtype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/missingtype.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/operators.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/propertydefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/propertydefinitions.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/returnvalues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/returnvalues.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/testsupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/testsupport.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/typeforwardee1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/typeforwardee1.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/typeforwardee2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/typeforwardee2.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/typeforwardee3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/typeforwardee3.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/typeforwarder1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/typeforwarder1.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/typeforwarder2.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/typeforwarder2.il -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/typeforwarder3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/typeforwarder3.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/Src/userdefinedconversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/ClrAssembly/Src/userdefinedconversions.cs -------------------------------------------------------------------------------- /Tests/ClrAssembly/dummy.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DispEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DispEvents.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DispEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DispEvents.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DispEvents.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DispEvents.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComLibrary.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComLibrary.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComLibrary.def -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComLibrary.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComLibrary.idl -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComLibrary.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComLibrary.rc -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComLibrary.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComLibrary.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComLibrary.sln -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComLibrary.vcxproj -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComLibrary.vcxproj.filters -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComLibraryPS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComLibraryPS.vcxproj -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComLibraryPS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComLibraryPS.vcxproj.filters -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComLibraryps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComLibraryps.def -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComServer.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComServer.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComServer.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComServer.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComStopwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComStopwatch.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComStopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComStopwatch.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrComStopwatch.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrComStopwatch.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrUniversalObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrUniversalObj.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrUniversalObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrUniversalObj.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/DlrUniversalObj.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/DlrUniversalObj.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/HiddenMembers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/HiddenMembers.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/HiddenMembers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/HiddenMembers.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/HiddenMembers.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/HiddenMembers.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/InOutParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/InOutParams.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/InOutParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/InOutParams.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/InOutParams.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/InOutParams.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/IndexedProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/IndexedProp.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/IndexedProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/IndexedProp.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/IndexedProp.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/IndexedProp.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/MultipleParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/MultipleParams.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/MultipleParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/MultipleParams.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/MultipleParams.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/MultipleParams.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/NoTypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/NoTypeInfo.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/NoTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/NoTypeInfo.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/NoTypeInfo.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/NoTypeInfo.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/NonDispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/NonDispatch.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/NonDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/NonDispatch.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/NonDispatch.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/NonDispatch.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/OptionalParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/OptionalParams.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/OptionalParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/OptionalParams.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/OptionalParams.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/OptionalParams.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/OutParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/OutParams.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/OutParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/OutParams.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/OutParams.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/OutParams.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/ParamsInRetval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/ParamsInRetval.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/ParamsInRetval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/ParamsInRetval.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/ParamsInRetval.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/ParamsInRetval.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/Properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/Properties.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/Properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/Properties.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/Properties.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/Properties.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/ProvidesClassInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/ProvidesClassInfo.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/ProvidesClassInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/ProvidesClassInfo.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/ProvidesClassInfo.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/ProvidesClassInfo.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/ReadMe.txt -------------------------------------------------------------------------------- /Tests/DlrComLibrary/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/Resource.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/ReturnValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/ReturnValues.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/ReturnValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/ReturnValues.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/ReturnValues.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/ReturnValues.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/Setup/Setup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/Setup/Setup.vdproj -------------------------------------------------------------------------------- /Tests/DlrComLibrary/Setup/Setup.vdproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/Setup/Setup.vdproj.vspscc -------------------------------------------------------------------------------- /Tests/DlrComLibrary/SimpleErrors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/SimpleErrors.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/SimpleErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/SimpleErrors.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/SimpleErrors.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/SimpleErrors.rgs -------------------------------------------------------------------------------- /Tests/DlrComLibrary/_IDispEventsEvents_CP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/_IDispEventsEvents_CP.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/_IDlrComServerEvents_CP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/_IDlrComServerEvents_CP.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/dllmain.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/dllmain.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/stdafx.cpp -------------------------------------------------------------------------------- /Tests/DlrComLibrary/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/stdafx.h -------------------------------------------------------------------------------- /Tests/DlrComLibrary/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/DlrComLibrary/targetver.h -------------------------------------------------------------------------------- /Tests/HostingTest/CodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/CodeType.cs -------------------------------------------------------------------------------- /Tests/HostingTest/CompiledCodeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/CompiledCodeTest.cs -------------------------------------------------------------------------------- /Tests/HostingTest/CompiledCodeTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/CompiledCodeTestHelper.cs -------------------------------------------------------------------------------- /Tests/HostingTest/HAPITestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/HAPITestBase.cs -------------------------------------------------------------------------------- /Tests/HostingTest/HostingTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/HostingTest.csproj -------------------------------------------------------------------------------- /Tests/HostingTest/LangSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/LangSetup.cs -------------------------------------------------------------------------------- /Tests/HostingTest/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/Log.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ObjectOperationsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ObjectOperationsTest.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ObjectOperationsTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ObjectOperationsTestHelper.cs -------------------------------------------------------------------------------- /Tests/HostingTest/PreDefinedCodeSnippets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/PreDefinedCodeSnippets.cs -------------------------------------------------------------------------------- /Tests/HostingTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/HostingTest/PythonCodeSnippets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/PythonCodeSnippets.cs -------------------------------------------------------------------------------- /Tests/HostingTest/RubyCodeSnippets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/RubyCodeSnippets.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptEngineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptEngineTest.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptEngineTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptEngineTestHelper.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptHostBasicSubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptHostBasicSubTest.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptHostTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptHostTest.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptHostTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptHostTestHelper.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptIOTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptIOTest.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptIOTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptIOTestHelper.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptRuntimeSetupTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptRuntimeSetupTest.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptRuntimeSetupTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptRuntimeSetupTestHelper.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptRuntimeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptRuntimeTest.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptRuntimeTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptRuntimeTestHelper.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptScopeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptScopeDictionary.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptScopeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptScopeTest.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptScopeTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptScopeTestHelper.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptSourceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptSourceTest.cs -------------------------------------------------------------------------------- /Tests/HostingTest/ScriptSourceTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/ScriptSourceTestHelper.cs -------------------------------------------------------------------------------- /Tests/HostingTest/StandardTestPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/StandardTestPaths.cs -------------------------------------------------------------------------------- /Tests/HostingTest/StandardTestStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/StandardTestStrings.cs -------------------------------------------------------------------------------- /Tests/HostingTest/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/TestHelpers.cs -------------------------------------------------------------------------------- /Tests/HostingTest/TestHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/HostingTest/TestHost.cs -------------------------------------------------------------------------------- /Tests/Metadata/AssemblyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/AssemblyList.cs -------------------------------------------------------------------------------- /Tests/Metadata/Metadata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/Metadata.csproj -------------------------------------------------------------------------------- /Tests/Metadata/MetadataTablesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/MetadataTablesExtensions.cs -------------------------------------------------------------------------------- /Tests/Metadata/NamespaceTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/NamespaceTree.cs -------------------------------------------------------------------------------- /Tests/Metadata/NamespaceTree_Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/NamespaceTree_Reflection.cs -------------------------------------------------------------------------------- /Tests/Metadata/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/Program.cs -------------------------------------------------------------------------------- /Tests/Metadata/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Metadata/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/ReflectionExtensions.cs -------------------------------------------------------------------------------- /Tests/Metadata/RubyModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/RubyModules.cs -------------------------------------------------------------------------------- /Tests/Metadata/Scripts/coverage.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/Scripts/coverage.cmd -------------------------------------------------------------------------------- /Tests/Metadata/Sequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/Sequence.cs -------------------------------------------------------------------------------- /Tests/Metadata/TestCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/TestCases.cs -------------------------------------------------------------------------------- /Tests/Metadata/TestFiles/1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/TestFiles/1.exe -------------------------------------------------------------------------------- /Tests/Metadata/TypeNestings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/TypeNestings.cs -------------------------------------------------------------------------------- /Tests/Metadata/UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Metadata/UnitTests.cs -------------------------------------------------------------------------------- /Tests/Microsoft.Dynamic.Test/InterpreterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Microsoft.Dynamic.Test/InterpreterTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.Dynamic.Test/LightExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Microsoft.Dynamic.Test/LightExceptionTests.cs -------------------------------------------------------------------------------- /Tests/Microsoft.Dynamic.Test/Microsoft.Dynamic.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Microsoft.Dynamic.Test/Microsoft.Dynamic.Test.csproj -------------------------------------------------------------------------------- /Tests/Microsoft.Dynamic.Test/TestReflectionServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Microsoft.Dynamic.Test/TestReflectionServices.cs -------------------------------------------------------------------------------- /Tests/Microsoft.Dynamic.Test/TestTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Microsoft.Dynamic.Test/TestTuple.cs -------------------------------------------------------------------------------- /Tests/Microsoft.Dynamic.Test/Utils/MathUtilsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Microsoft.Dynamic.Test/Utils/MathUtilsTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.Scripting.Test/Microsoft.Scripting.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Microsoft.Scripting.Test/Microsoft.Scripting.Test.csproj -------------------------------------------------------------------------------- /Tests/Microsoft.Scripting.Test/Utils/ArrayUtilsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/Tests/Microsoft.Scripting.Test/Utils/ArrayUtilsTest.cs -------------------------------------------------------------------------------- /make.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronLanguages/dlr/HEAD/make.ps1 --------------------------------------------------------------------------------