├── .gitattributes ├── .gitignore ├── Import ├── Vlpp.Linux.cpp ├── Vlpp.Windows.cpp ├── Vlpp.cpp ├── Vlpp.h ├── VlppGlrParser.cpp ├── VlppGlrParser.h ├── VlppGlrParserCompiler.cpp ├── VlppGlrParserCompiler.h ├── VlppOS.Linux.cpp ├── VlppOS.Windows.cpp ├── VlppOS.cpp ├── VlppOS.h ├── VlppReflection.cpp ├── VlppReflection.h ├── VlppRegex.cpp └── VlppRegex.h ├── LICENSE.md ├── README.md ├── Release ├── CodegenConfig.xml ├── IncludeOnly │ ├── VlppWorkflowCompiler.cpp │ ├── VlppWorkflowCompiler.h │ ├── VlppWorkflowLibrary.cpp │ ├── VlppWorkflowLibrary.h │ ├── VlppWorkflowRuntime.cpp │ └── VlppWorkflowRuntime.h ├── VlppWorkflowCompiler.cpp ├── VlppWorkflowCompiler.h ├── VlppWorkflowLibrary.cpp ├── VlppWorkflowLibrary.h ├── VlppWorkflowRuntime.cpp └── VlppWorkflowRuntime.h ├── Source ├── Analyzer │ ├── WfAnalyzer.cpp │ ├── WfAnalyzer.h │ ├── WfAnalyzer_BuildGlobalNameFromModules.cpp │ ├── WfAnalyzer_BuildGlobalNameFromTypeDescriptors.cpp │ ├── WfAnalyzer_BuildScope.cpp │ ├── WfAnalyzer_CheckScope_DuplicatedSymbol.cpp │ ├── WfAnalyzer_CheckScope_SymbolType.cpp │ ├── WfAnalyzer_CheckScopes_CycleDependency.cpp │ ├── WfAnalyzer_CompleteScope.cpp │ ├── WfAnalyzer_ContextFreeDesugar.cpp │ ├── WfAnalyzer_Errors.cpp │ ├── WfAnalyzer_ExpandBindExpression.cpp │ ├── WfAnalyzer_ExpandMixinCastExpression.cpp │ ├── WfAnalyzer_ExpandNewCoroutineExpression.cpp │ ├── WfAnalyzer_ExpandStateMachine.cpp │ ├── WfAnalyzer_ExpandStatement.cpp │ ├── WfAnalyzer_Misc.cpp │ ├── WfAnalyzer_SearchOrderedName.cpp │ ├── WfAnalyzer_TypeInfo.cpp │ ├── WfAnalyzer_ValidateScopeName.cpp │ ├── WfAnalyzer_ValidateSemantic.cpp │ ├── WfAnalyzer_ValidateSemantic_Declaration.cpp │ ├── WfAnalyzer_ValidateSemantic_Expression.cpp │ ├── WfAnalyzer_ValidateSemantic_Statement.cpp │ ├── WfAnalyzer_ValidateStructure.cpp │ ├── WfAnalyzer_ValidateStructure_Declaration.cpp │ ├── WfAnalyzer_ValidateStructure_Expression.cpp │ ├── WfAnalyzer_ValidateStructure_Statement.cpp │ └── WfAnalyzer_ValidateStructure_Type.cpp ├── Cpp │ ├── WfCpp.cpp │ ├── WfCpp.h │ ├── WfCpp_AssignClassDeclsToFiles.cpp │ ├── WfCpp_Class.cpp │ ├── WfCpp_Collect.cpp │ ├── WfCpp_Expression.cpp │ ├── WfCpp_File.cpp │ ├── WfCpp_GenerateCppFiles.cpp │ ├── WfCpp_Statement.cpp │ ├── WfCpp_WriteClass.cpp │ ├── WfCpp_WriteEnum.cpp │ ├── WfCpp_WriteFunctionHeader.cpp │ ├── WfCpp_WriteGlobal.cpp │ ├── WfCpp_WriteLambda.cpp │ ├── WfCpp_WriteReflection.cpp │ ├── WfCpp_WriteStruct.cpp │ ├── WfMergeCpp.cpp │ └── WfMergeCpp.h ├── Emitter │ ├── WfEmitter.cpp │ ├── WfEmitter.h │ ├── WfEmitter_Assembly.cpp │ ├── WfEmitter_Declaration.cpp │ ├── WfEmitter_Expression.cpp │ ├── WfEmitter_Metadata.cpp │ └── WfEmitter_Statement.cpp ├── Library │ ├── WfLibraryCppHelper.cpp │ ├── WfLibraryCppHelper.h │ ├── WfLibraryPredefined.cpp │ ├── WfLibraryPredefined.h │ ├── WfLibraryReflection.cpp │ └── WfLibraryReflection.h ├── Parser │ ├── Generated │ │ ├── WorkflowAst.cpp │ │ ├── WorkflowAst.h │ │ ├── WorkflowAst_Builder.cpp │ │ ├── WorkflowAst_Builder.h │ │ ├── WorkflowAst_Copy.cpp │ │ ├── WorkflowAst_Copy.h │ │ ├── WorkflowAst_Empty.cpp │ │ ├── WorkflowAst_Empty.h │ │ ├── WorkflowAst_Json.cpp │ │ ├── WorkflowAst_Json.h │ │ ├── WorkflowAst_Traverse.cpp │ │ ├── WorkflowAst_Traverse.h │ │ ├── WorkflowParser.cpp │ │ ├── WorkflowParser.h │ │ ├── Workflow_Assembler.cpp │ │ ├── Workflow_Assembler.h │ │ ├── Workflow_Lexer.cpp │ │ └── Workflow_Lexer.h │ ├── Syntax │ │ ├── Ast │ │ │ ├── Ast.txt │ │ │ ├── Decls.txt │ │ │ ├── DeclsClass.txt │ │ │ ├── DeclsEnum.txt │ │ │ ├── DeclsStruct.txt │ │ │ ├── DeclsVirtual.txt │ │ │ ├── Expressions.txt │ │ │ ├── ExpressionsVirtual.txt │ │ │ ├── Module.txt │ │ │ ├── Statements.txt │ │ │ ├── StatementsCoroutine.txt │ │ │ ├── StatementsVirtual.txt │ │ │ └── Types.txt │ │ ├── Lexer.txt │ │ ├── Parser.xml │ │ └── Syntax │ │ │ ├── Decls.txt │ │ │ ├── Expressions.txt │ │ │ ├── Module.txt │ │ │ ├── Statements.txt │ │ │ └── Types.txt │ ├── WfExpression.cpp │ └── WfExpression.h └── Runtime │ ├── WfRuntime.cpp │ ├── WfRuntime.h │ ├── WfRuntimeAssembly.cpp │ ├── WfRuntimeAssembly.h │ ├── WfRuntimeConstructions.cpp │ ├── WfRuntimeConstructions.h │ ├── WfRuntimeDebugger.cpp │ ├── WfRuntimeDebugger.h │ ├── WfRuntimeExecution.cpp │ ├── WfRuntimeInstruction.cpp │ ├── WfRuntimeInstruction.h │ ├── WfRuntimeTypeDescriptor.cpp │ └── WfRuntimeTypeDescriptor.h ├── TODO.md ├── Test ├── Generated │ ├── Cpp32 │ │ ├── AnonymousLambda.cpp │ │ ├── AnonymousLambda.h │ │ ├── BindComplex.cpp │ │ ├── BindComplex.h │ │ ├── BindCustomInterface.cpp │ │ ├── BindCustomInterface.h │ │ ├── BindCustomInterface2.cpp │ │ ├── BindCustomInterface2.h │ │ ├── BindCustomInterface2Reflection.cpp │ │ ├── BindCustomInterface2Reflection.h │ │ ├── BindCustomInterfaceReflection.cpp │ │ ├── BindCustomInterfaceReflection.h │ │ ├── BindFormat.cpp │ │ ├── BindFormat.h │ │ ├── BindLet.cpp │ │ ├── BindLet.h │ │ ├── BindLetReflection.cpp │ │ ├── BindLetReflection.h │ │ ├── BindNull.cpp │ │ ├── BindNull.h │ │ ├── BindNullReflection.cpp │ │ ├── BindNullReflection.h │ │ ├── BindSimple.cpp │ │ ├── BindSimple.h │ │ ├── BindSimple2.cpp │ │ ├── BindSimple2.h │ │ ├── BindSimple2Reflection.cpp │ │ ├── BindSimple2Reflection.h │ │ ├── BindSimpleReflection.cpp │ │ ├── BindSimpleReflection.h │ │ ├── CallStaticMethod.cpp │ │ ├── CallStaticMethod.h │ │ ├── CallStaticMethodReflection.cpp │ │ ├── CallStaticMethodReflection.h │ │ ├── ClassCtor.cpp │ │ ├── ClassCtor.h │ │ ├── ClassCtorReflection.cpp │ │ ├── ClassCtorReflection.h │ │ ├── ClassDtor.cpp │ │ ├── ClassDtor.h │ │ ├── ClassDtorReflection.cpp │ │ ├── ClassDtorReflection.h │ │ ├── ClassField.cpp │ │ ├── ClassField.h │ │ ├── ClassMethod.cpp │ │ ├── ClassMethod.h │ │ ├── ClassMethodReflection.cpp │ │ ├── ClassMethodReflection.h │ │ ├── CoAsync.cpp │ │ ├── CoAsync.h │ │ ├── CoAsync2.cpp │ │ ├── CoAsync2.h │ │ ├── CoAsync2Reflection.cpp │ │ ├── CoAsync2Reflection.h │ │ ├── CoAsyncReflection.cpp │ │ ├── CoAsyncReflection.h │ │ ├── CoEnum.cpp │ │ ├── CoEnum.h │ │ ├── CoEnum2.cpp │ │ ├── CoEnum2.h │ │ ├── CoRawCoroutine.cpp │ │ ├── CoRawCoroutine.h │ │ ├── CoRawCoroutine2.cpp │ │ ├── CoRawCoroutine2.h │ │ ├── CoRawCoroutine3.cpp │ │ ├── CoRawCoroutine3.h │ │ ├── CoRawCoroutine4.cpp │ │ ├── CoRawCoroutine4.h │ │ ├── CoRawCoroutine5.cpp │ │ ├── CoRawCoroutine5.h │ │ ├── CoRawCoroutine6.cpp │ │ ├── CoRawCoroutine6.h │ │ ├── CoRawCoroutine7.cpp │ │ ├── CoRawCoroutine7.h │ │ ├── CoSmcCalculator.cpp │ │ ├── CoSmcCalculator.h │ │ ├── CoSmcCalculatorReflection.cpp │ │ ├── CoSmcCalculatorReflection.h │ │ ├── CoSmcGoto.cpp │ │ ├── CoSmcGoto.h │ │ ├── CoSmcGotoReflection.cpp │ │ ├── CoSmcGotoReflection.h │ │ ├── CoSmcPush.cpp │ │ ├── CoSmcPush.h │ │ ├── CoSmcPushReflection.cpp │ │ ├── CoSmcPushReflection.h │ │ ├── CoSmcSwitchD1.cpp │ │ ├── CoSmcSwitchD1.h │ │ ├── CoSmcSwitchD1Reflection.cpp │ │ ├── CoSmcSwitchD1Reflection.h │ │ ├── CoSmcSwitchD2.cpp │ │ ├── CoSmcSwitchD2.h │ │ ├── CoSmcSwitchD2Reflection.cpp │ │ ├── CoSmcSwitchD2Reflection.h │ │ ├── CoSmcSwitchI1.cpp │ │ ├── CoSmcSwitchI1.h │ │ ├── CoSmcSwitchI1Reflection.cpp │ │ ├── CoSmcSwitchI1Reflection.h │ │ ├── CoSmcSwitchI2.cpp │ │ ├── CoSmcSwitchI2.h │ │ ├── CoSmcSwitchI2Reflection.cpp │ │ ├── CoSmcSwitchI2Reflection.h │ │ ├── CoSmcSwitchIR1.cpp │ │ ├── CoSmcSwitchIR1.h │ │ ├── CoSmcSwitchIR1Reflection.cpp │ │ ├── CoSmcSwitchIR1Reflection.h │ │ ├── CoSmcSwitchIR2.cpp │ │ ├── CoSmcSwitchIR2.h │ │ ├── CoSmcSwitchIR2Reflection.cpp │ │ ├── CoSmcSwitchIR2Reflection.h │ │ ├── CoSmcSwitchP1.cpp │ │ ├── CoSmcSwitchP1.h │ │ ├── CoSmcSwitchP1Reflection.cpp │ │ ├── CoSmcSwitchP1Reflection.h │ │ ├── CoSmcSwitchP2.cpp │ │ ├── CoSmcSwitchP2.h │ │ ├── CoSmcSwitchP2Reflection.cpp │ │ ├── CoSmcSwitchP2Reflection.h │ │ ├── CoSmcSwitchPR1.cpp │ │ ├── CoSmcSwitchPR1.h │ │ ├── CoSmcSwitchPR1Reflection.cpp │ │ ├── CoSmcSwitchPR1Reflection.h │ │ ├── CoSmcSwitchPR2.cpp │ │ ├── CoSmcSwitchPR2.h │ │ ├── CoSmcSwitchPR2Reflection.cpp │ │ ├── CoSmcSwitchPR2Reflection.h │ │ ├── CoSmcTryCatch1.cpp │ │ ├── CoSmcTryCatch1.h │ │ ├── CoSmcTryCatch1Reflection.cpp │ │ ├── CoSmcTryCatch1Reflection.h │ │ ├── CoSmcTryCatch2.cpp │ │ ├── CoSmcTryCatch2.h │ │ ├── CoSmcTryCatch2Reflection.cpp │ │ ├── CoSmcTryCatch2Reflection.h │ │ ├── ControlFlow.cpp │ │ ├── ControlFlow.h │ │ ├── Delete.cpp │ │ ├── Delete.h │ │ ├── ElementInSet.cpp │ │ ├── ElementInSet.h │ │ ├── EnumCtor.cpp │ │ ├── EnumCtor.h │ │ ├── EnumCtor2.cpp │ │ ├── EnumCtor2.h │ │ ├── EnumCtor2Reflection.cpp │ │ ├── EnumCtor2Reflection.h │ │ ├── Event.cpp │ │ ├── Event.h │ │ ├── Event2.cpp │ │ ├── Event2.h │ │ ├── Event2Reflection.cpp │ │ ├── Event2Reflection.h │ │ ├── FailedThen.cpp │ │ ├── FailedThen.h │ │ ├── ForEach.cpp │ │ ├── ForEach.h │ │ ├── GlobalVariable.cpp │ │ ├── GlobalVariable.h │ │ ├── HelloWorld.cpp │ │ ├── HelloWorld.h │ │ ├── IfNotNull.cpp │ │ ├── IfNotNull.h │ │ ├── LetIn.cpp │ │ ├── LetIn.h │ │ ├── ListProcessing.cpp │ │ ├── ListProcessing.h │ │ ├── MapProcessing.cpp │ │ ├── MapProcessing.h │ │ ├── MethodClosure.cpp │ │ ├── MethodClosure.h │ │ ├── NamedLambda.cpp │ │ ├── NamedLambda.h │ │ ├── NestedLambda.cpp │ │ ├── NestedLambda.h │ │ ├── NestedLambdaReflection.cpp │ │ ├── NestedLambdaReflection.h │ │ ├── NewCustomInterface.cpp │ │ ├── NewCustomInterface.h │ │ ├── NewCustomInterface2.cpp │ │ ├── NewCustomInterface2.h │ │ ├── NewCustomInterface2Reflection.cpp │ │ ├── NewCustomInterface2Reflection.h │ │ ├── NewCustomInterface3.cpp │ │ ├── NewCustomInterface3.h │ │ ├── NewCustomInterface3Reflection.cpp │ │ ├── NewCustomInterface3Reflection.h │ │ ├── NewCustomInterfaceReflection.cpp │ │ ├── NewCustomInterfaceReflection.h │ │ ├── NewEmptyInterface.cpp │ │ ├── NewEmptyInterface.h │ │ ├── NewEmptyInterfaceReflection.cpp │ │ ├── NewEmptyInterfaceReflection.h │ │ ├── NewInterface.cpp │ │ ├── NewInterface.h │ │ ├── NullableCast.cpp │ │ ├── NullableCast.h │ │ ├── NullableCastReflection.cpp │ │ ├── NullableCastReflection.h │ │ ├── ObservableList.cpp │ │ ├── ObservableList.h │ │ ├── OpAdd.cpp │ │ ├── OpAdd.h │ │ ├── OpAnd.cpp │ │ ├── OpAnd.h │ │ ├── OpCompare.cpp │ │ ├── OpCompare.h │ │ ├── OpCompareIndexOf.cpp │ │ ├── OpCompareIndexOf.h │ │ ├── OpCompareIndexOfReflection.cpp │ │ ├── OpCompareIndexOfReflection.h │ │ ├── OpCompareReference.cpp │ │ ├── OpCompareReference.h │ │ ├── OpCompareReflection.cpp │ │ ├── OpCompareReflection.h │ │ ├── OpCompareStruct1.cpp │ │ ├── OpCompareStruct1.h │ │ ├── OpCompareStruct2.cpp │ │ ├── OpCompareStruct2.h │ │ ├── OpCompareStruct2Reflection.cpp │ │ ├── OpCompareStruct2Reflection.h │ │ ├── OpCompareWithString.cpp │ │ ├── OpCompareWithString.h │ │ ├── OpDiv.cpp │ │ ├── OpDiv.h │ │ ├── OpMod.cpp │ │ ├── OpMod.h │ │ ├── OpMul.cpp │ │ ├── OpMul.h │ │ ├── OpNegative.cpp │ │ ├── OpNegative.h │ │ ├── OpNot.cpp │ │ ├── OpNot.h │ │ ├── OpOr.cpp │ │ ├── OpOr.h │ │ ├── OpPositive.cpp │ │ ├── OpPositive.h │ │ ├── OpShl.cpp │ │ ├── OpShl.h │ │ ├── OpShr.cpp │ │ ├── OpShr.h │ │ ├── OpSub.cpp │ │ ├── OpSub.h │ │ ├── OpXor.cpp │ │ ├── OpXor.h │ │ ├── OrderedLambda.cpp │ │ ├── OrderedLambda.h │ │ ├── Overloading.cpp │ │ ├── Overloading.h │ │ ├── Property.cpp │ │ ├── Property.h │ │ ├── RecursiveFunction.cpp │ │ ├── RecursiveFunction.h │ │ ├── StaticInit.cpp │ │ ├── StaticInit.h │ │ ├── StaticMethod.cpp │ │ ├── StaticMethod.h │ │ ├── StructCtor.cpp │ │ ├── StructCtor.h │ │ ├── StructCtor2.cpp │ │ ├── StructCtor2.h │ │ ├── StructCtor2Reflection.cpp │ │ ├── StructCtor2Reflection.h │ │ ├── StructCtorReflection.cpp │ │ ├── StructCtorReflection.h │ │ ├── TestCases.cpp │ │ ├── TryCatch.cpp │ │ ├── TryCatch.h │ │ ├── TryFinally.cpp │ │ ├── TryFinally.h │ │ ├── TryFinally2.cpp │ │ ├── TryFinally2.h │ │ ├── WorkflowAttributes.cpp │ │ ├── WorkflowAttributes.h │ │ ├── WorkflowAttributes1.h │ │ ├── WorkflowAttributesIncludes.h │ │ ├── WorkflowAttributesReflection.cpp │ │ ├── WorkflowAttributesReflection.h │ │ ├── WorkflowAttributes_Expression.cpp │ │ ├── WorkflowAttributes_Expression.h │ │ ├── WorkflowHints.cpp │ │ ├── WorkflowHints.h │ │ ├── WorkflowHintsReflection.cpp │ │ ├── WorkflowHintsReflection.h │ │ ├── WorkflowMultiFiles.cpp │ │ ├── WorkflowMultiFiles.h │ │ ├── WorkflowMultiFiles1.h │ │ ├── WorkflowMultiFiles2.h │ │ ├── WorkflowMultiFilesIncludes.h │ │ ├── WorkflowMultiFilesReflection.cpp │ │ ├── WorkflowMultiFilesReflection.h │ │ ├── WorkflowMultiFiles_Animal.cpp │ │ ├── WorkflowMultiFiles_Animal.h │ │ ├── WorkflowMultiFiles_Bird.cpp │ │ ├── WorkflowMultiFiles_Bird.h │ │ ├── WorkflowMultiFiles_Lion.cpp │ │ └── WorkflowMultiFiles_Lion.h │ ├── Cpp64 │ │ ├── AnonymousLambda.cpp │ │ ├── AnonymousLambda.h │ │ ├── BindComplex.cpp │ │ ├── BindComplex.h │ │ ├── BindCustomInterface.cpp │ │ ├── BindCustomInterface.h │ │ ├── BindCustomInterface2.cpp │ │ ├── BindCustomInterface2.h │ │ ├── BindCustomInterface2Reflection.cpp │ │ ├── BindCustomInterface2Reflection.h │ │ ├── BindCustomInterfaceReflection.cpp │ │ ├── BindCustomInterfaceReflection.h │ │ ├── BindFormat.cpp │ │ ├── BindFormat.h │ │ ├── BindLet.cpp │ │ ├── BindLet.h │ │ ├── BindLetReflection.cpp │ │ ├── BindLetReflection.h │ │ ├── BindNull.cpp │ │ ├── BindNull.h │ │ ├── BindNullReflection.cpp │ │ ├── BindNullReflection.h │ │ ├── BindSimple.cpp │ │ ├── BindSimple.h │ │ ├── BindSimple2.cpp │ │ ├── BindSimple2.h │ │ ├── BindSimple2Reflection.cpp │ │ ├── BindSimple2Reflection.h │ │ ├── BindSimpleReflection.cpp │ │ ├── BindSimpleReflection.h │ │ ├── CallStaticMethod.cpp │ │ ├── CallStaticMethod.h │ │ ├── CallStaticMethodReflection.cpp │ │ ├── CallStaticMethodReflection.h │ │ ├── ClassCtor.cpp │ │ ├── ClassCtor.h │ │ ├── ClassCtorReflection.cpp │ │ ├── ClassCtorReflection.h │ │ ├── ClassDtor.cpp │ │ ├── ClassDtor.h │ │ ├── ClassDtorReflection.cpp │ │ ├── ClassDtorReflection.h │ │ ├── ClassField.cpp │ │ ├── ClassField.h │ │ ├── ClassMethod.cpp │ │ ├── ClassMethod.h │ │ ├── ClassMethodReflection.cpp │ │ ├── ClassMethodReflection.h │ │ ├── CoAsync.cpp │ │ ├── CoAsync.h │ │ ├── CoAsync2.cpp │ │ ├── CoAsync2.h │ │ ├── CoAsync2Reflection.cpp │ │ ├── CoAsync2Reflection.h │ │ ├── CoAsyncReflection.cpp │ │ ├── CoAsyncReflection.h │ │ ├── CoEnum.cpp │ │ ├── CoEnum.h │ │ ├── CoEnum2.cpp │ │ ├── CoEnum2.h │ │ ├── CoRawCoroutine.cpp │ │ ├── CoRawCoroutine.h │ │ ├── CoRawCoroutine2.cpp │ │ ├── CoRawCoroutine2.h │ │ ├── CoRawCoroutine3.cpp │ │ ├── CoRawCoroutine3.h │ │ ├── CoRawCoroutine4.cpp │ │ ├── CoRawCoroutine4.h │ │ ├── CoRawCoroutine5.cpp │ │ ├── CoRawCoroutine5.h │ │ ├── CoRawCoroutine6.cpp │ │ ├── CoRawCoroutine6.h │ │ ├── CoRawCoroutine7.cpp │ │ ├── CoRawCoroutine7.h │ │ ├── CoSmcCalculator.cpp │ │ ├── CoSmcCalculator.h │ │ ├── CoSmcCalculatorReflection.cpp │ │ ├── CoSmcCalculatorReflection.h │ │ ├── CoSmcGoto.cpp │ │ ├── CoSmcGoto.h │ │ ├── CoSmcGotoReflection.cpp │ │ ├── CoSmcGotoReflection.h │ │ ├── CoSmcPush.cpp │ │ ├── CoSmcPush.h │ │ ├── CoSmcPushReflection.cpp │ │ ├── CoSmcPushReflection.h │ │ ├── CoSmcSwitchD1.cpp │ │ ├── CoSmcSwitchD1.h │ │ ├── CoSmcSwitchD1Reflection.cpp │ │ ├── CoSmcSwitchD1Reflection.h │ │ ├── CoSmcSwitchD2.cpp │ │ ├── CoSmcSwitchD2.h │ │ ├── CoSmcSwitchD2Reflection.cpp │ │ ├── CoSmcSwitchD2Reflection.h │ │ ├── CoSmcSwitchI1.cpp │ │ ├── CoSmcSwitchI1.h │ │ ├── CoSmcSwitchI1Reflection.cpp │ │ ├── CoSmcSwitchI1Reflection.h │ │ ├── CoSmcSwitchI2.cpp │ │ ├── CoSmcSwitchI2.h │ │ ├── CoSmcSwitchI2Reflection.cpp │ │ ├── CoSmcSwitchI2Reflection.h │ │ ├── CoSmcSwitchIR1.cpp │ │ ├── CoSmcSwitchIR1.h │ │ ├── CoSmcSwitchIR1Reflection.cpp │ │ ├── CoSmcSwitchIR1Reflection.h │ │ ├── CoSmcSwitchIR2.cpp │ │ ├── CoSmcSwitchIR2.h │ │ ├── CoSmcSwitchIR2Reflection.cpp │ │ ├── CoSmcSwitchIR2Reflection.h │ │ ├── CoSmcSwitchP1.cpp │ │ ├── CoSmcSwitchP1.h │ │ ├── CoSmcSwitchP1Reflection.cpp │ │ ├── CoSmcSwitchP1Reflection.h │ │ ├── CoSmcSwitchP2.cpp │ │ ├── CoSmcSwitchP2.h │ │ ├── CoSmcSwitchP2Reflection.cpp │ │ ├── CoSmcSwitchP2Reflection.h │ │ ├── CoSmcSwitchPR1.cpp │ │ ├── CoSmcSwitchPR1.h │ │ ├── CoSmcSwitchPR1Reflection.cpp │ │ ├── CoSmcSwitchPR1Reflection.h │ │ ├── CoSmcSwitchPR2.cpp │ │ ├── CoSmcSwitchPR2.h │ │ ├── CoSmcSwitchPR2Reflection.cpp │ │ ├── CoSmcSwitchPR2Reflection.h │ │ ├── CoSmcTryCatch1.cpp │ │ ├── CoSmcTryCatch1.h │ │ ├── CoSmcTryCatch1Reflection.cpp │ │ ├── CoSmcTryCatch1Reflection.h │ │ ├── CoSmcTryCatch2.cpp │ │ ├── CoSmcTryCatch2.h │ │ ├── CoSmcTryCatch2Reflection.cpp │ │ ├── CoSmcTryCatch2Reflection.h │ │ ├── ControlFlow.cpp │ │ ├── ControlFlow.h │ │ ├── Delete.cpp │ │ ├── Delete.h │ │ ├── ElementInSet.cpp │ │ ├── ElementInSet.h │ │ ├── EnumCtor.cpp │ │ ├── EnumCtor.h │ │ ├── EnumCtor2.cpp │ │ ├── EnumCtor2.h │ │ ├── EnumCtor2Reflection.cpp │ │ ├── EnumCtor2Reflection.h │ │ ├── Event.cpp │ │ ├── Event.h │ │ ├── Event2.cpp │ │ ├── Event2.h │ │ ├── Event2Reflection.cpp │ │ ├── Event2Reflection.h │ │ ├── FailedThen.cpp │ │ ├── FailedThen.h │ │ ├── ForEach.cpp │ │ ├── ForEach.h │ │ ├── GlobalVariable.cpp │ │ ├── GlobalVariable.h │ │ ├── HelloWorld.cpp │ │ ├── HelloWorld.h │ │ ├── IfNotNull.cpp │ │ ├── IfNotNull.h │ │ ├── LetIn.cpp │ │ ├── LetIn.h │ │ ├── ListProcessing.cpp │ │ ├── ListProcessing.h │ │ ├── MapProcessing.cpp │ │ ├── MapProcessing.h │ │ ├── MethodClosure.cpp │ │ ├── MethodClosure.h │ │ ├── NamedLambda.cpp │ │ ├── NamedLambda.h │ │ ├── NestedLambda.cpp │ │ ├── NestedLambda.h │ │ ├── NestedLambdaReflection.cpp │ │ ├── NestedLambdaReflection.h │ │ ├── NewCustomInterface.cpp │ │ ├── NewCustomInterface.h │ │ ├── NewCustomInterface2.cpp │ │ ├── NewCustomInterface2.h │ │ ├── NewCustomInterface2Reflection.cpp │ │ ├── NewCustomInterface2Reflection.h │ │ ├── NewCustomInterface3.cpp │ │ ├── NewCustomInterface3.h │ │ ├── NewCustomInterface3Reflection.cpp │ │ ├── NewCustomInterface3Reflection.h │ │ ├── NewCustomInterfaceReflection.cpp │ │ ├── NewCustomInterfaceReflection.h │ │ ├── NewEmptyInterface.cpp │ │ ├── NewEmptyInterface.h │ │ ├── NewEmptyInterfaceReflection.cpp │ │ ├── NewEmptyInterfaceReflection.h │ │ ├── NewInterface.cpp │ │ ├── NewInterface.h │ │ ├── NullableCast.cpp │ │ ├── NullableCast.h │ │ ├── NullableCastReflection.cpp │ │ ├── NullableCastReflection.h │ │ ├── ObservableList.cpp │ │ ├── ObservableList.h │ │ ├── OpAdd.cpp │ │ ├── OpAdd.h │ │ ├── OpAnd.cpp │ │ ├── OpAnd.h │ │ ├── OpCompare.cpp │ │ ├── OpCompare.h │ │ ├── OpCompareIndexOf.cpp │ │ ├── OpCompareIndexOf.h │ │ ├── OpCompareIndexOfReflection.cpp │ │ ├── OpCompareIndexOfReflection.h │ │ ├── OpCompareReference.cpp │ │ ├── OpCompareReference.h │ │ ├── OpCompareReflection.cpp │ │ ├── OpCompareReflection.h │ │ ├── OpCompareStruct1.cpp │ │ ├── OpCompareStruct1.h │ │ ├── OpCompareStruct2.cpp │ │ ├── OpCompareStruct2.h │ │ ├── OpCompareStruct2Reflection.cpp │ │ ├── OpCompareStruct2Reflection.h │ │ ├── OpCompareWithString.cpp │ │ ├── OpCompareWithString.h │ │ ├── OpDiv.cpp │ │ ├── OpDiv.h │ │ ├── OpMod.cpp │ │ ├── OpMod.h │ │ ├── OpMul.cpp │ │ ├── OpMul.h │ │ ├── OpNegative.cpp │ │ ├── OpNegative.h │ │ ├── OpNot.cpp │ │ ├── OpNot.h │ │ ├── OpOr.cpp │ │ ├── OpOr.h │ │ ├── OpPositive.cpp │ │ ├── OpPositive.h │ │ ├── OpShl.cpp │ │ ├── OpShl.h │ │ ├── OpShr.cpp │ │ ├── OpShr.h │ │ ├── OpSub.cpp │ │ ├── OpSub.h │ │ ├── OpXor.cpp │ │ ├── OpXor.h │ │ ├── OrderedLambda.cpp │ │ ├── OrderedLambda.h │ │ ├── Overloading.cpp │ │ ├── Overloading.h │ │ ├── Property.cpp │ │ ├── Property.h │ │ ├── RecursiveFunction.cpp │ │ ├── RecursiveFunction.h │ │ ├── StaticInit.cpp │ │ ├── StaticInit.h │ │ ├── StaticMethod.cpp │ │ ├── StaticMethod.h │ │ ├── StructCtor.cpp │ │ ├── StructCtor.h │ │ ├── StructCtor2.cpp │ │ ├── StructCtor2.h │ │ ├── StructCtor2Reflection.cpp │ │ ├── StructCtor2Reflection.h │ │ ├── StructCtorReflection.cpp │ │ ├── StructCtorReflection.h │ │ ├── TestCases.cpp │ │ ├── TryCatch.cpp │ │ ├── TryCatch.h │ │ ├── TryFinally.cpp │ │ ├── TryFinally.h │ │ ├── TryFinally2.cpp │ │ ├── TryFinally2.h │ │ ├── WorkflowAttributes.cpp │ │ ├── WorkflowAttributes.h │ │ ├── WorkflowAttributes1.h │ │ ├── WorkflowAttributesIncludes.h │ │ ├── WorkflowAttributesReflection.cpp │ │ ├── WorkflowAttributesReflection.h │ │ ├── WorkflowAttributes_Expression.cpp │ │ ├── WorkflowAttributes_Expression.h │ │ ├── WorkflowHints.cpp │ │ ├── WorkflowHints.h │ │ ├── WorkflowHintsReflection.cpp │ │ ├── WorkflowHintsReflection.h │ │ ├── WorkflowMultiFiles.cpp │ │ ├── WorkflowMultiFiles.h │ │ ├── WorkflowMultiFiles1.h │ │ ├── WorkflowMultiFiles2.h │ │ ├── WorkflowMultiFilesIncludes.h │ │ ├── WorkflowMultiFilesReflection.cpp │ │ ├── WorkflowMultiFilesReflection.h │ │ ├── WorkflowMultiFiles_Animal.cpp │ │ ├── WorkflowMultiFiles_Animal.h │ │ ├── WorkflowMultiFiles_Bird.cpp │ │ ├── WorkflowMultiFiles_Bird.h │ │ ├── WorkflowMultiFiles_Lion.cpp │ │ └── WorkflowMultiFiles_Lion.h │ ├── Reflection32.bin │ ├── Reflection32.txt │ ├── Reflection32[2].txt │ ├── Reflection64.bin │ ├── Reflection64.txt │ ├── Reflection64[2].txt │ ├── Workflow32 │ │ ├── Assembly.Codegen.AnonymousLambda.txt │ │ ├── Assembly.Codegen.BindComplex.txt │ │ ├── Assembly.Codegen.BindCustomInterface.txt │ │ ├── Assembly.Codegen.BindCustomInterface2.txt │ │ ├── Assembly.Codegen.BindFormat.txt │ │ ├── Assembly.Codegen.BindLet.txt │ │ ├── Assembly.Codegen.BindNull.txt │ │ ├── Assembly.Codegen.BindSimple.txt │ │ ├── Assembly.Codegen.BindSimple2.txt │ │ ├── Assembly.Codegen.CallStaticMethod.txt │ │ ├── Assembly.Codegen.ClassCtor.txt │ │ ├── Assembly.Codegen.ClassDtor.txt │ │ ├── Assembly.Codegen.ClassField.txt │ │ ├── Assembly.Codegen.ClassMethod.txt │ │ ├── Assembly.Codegen.CoAsync.txt │ │ ├── Assembly.Codegen.CoAsync2.txt │ │ ├── Assembly.Codegen.CoEnum.txt │ │ ├── Assembly.Codegen.CoEnum2.txt │ │ ├── Assembly.Codegen.CoRawCoroutine.txt │ │ ├── Assembly.Codegen.CoRawCoroutine2.txt │ │ ├── Assembly.Codegen.CoRawCoroutine3.txt │ │ ├── Assembly.Codegen.CoRawCoroutine4.txt │ │ ├── Assembly.Codegen.CoRawCoroutine5.txt │ │ ├── Assembly.Codegen.CoRawCoroutine6.txt │ │ ├── Assembly.Codegen.CoRawCoroutine7.txt │ │ ├── Assembly.Codegen.CoSmcCalculator.txt │ │ ├── Assembly.Codegen.CoSmcGoto.txt │ │ ├── Assembly.Codegen.CoSmcPush.txt │ │ ├── Assembly.Codegen.CoSmcSwitchD1.txt │ │ ├── Assembly.Codegen.CoSmcSwitchD2.txt │ │ ├── Assembly.Codegen.CoSmcSwitchI1.txt │ │ ├── Assembly.Codegen.CoSmcSwitchI2.txt │ │ ├── Assembly.Codegen.CoSmcSwitchIR1.txt │ │ ├── Assembly.Codegen.CoSmcSwitchIR2.txt │ │ ├── Assembly.Codegen.CoSmcSwitchP1.txt │ │ ├── Assembly.Codegen.CoSmcSwitchP2.txt │ │ ├── Assembly.Codegen.CoSmcSwitchPR1.txt │ │ ├── Assembly.Codegen.CoSmcSwitchPR2.txt │ │ ├── Assembly.Codegen.CoSmcTryCatch1.txt │ │ ├── Assembly.Codegen.CoSmcTryCatch2.txt │ │ ├── Assembly.Codegen.ControlFlow.txt │ │ ├── Assembly.Codegen.Delete.txt │ │ ├── Assembly.Codegen.ElementInSet.txt │ │ ├── Assembly.Codegen.EnumCtor.txt │ │ ├── Assembly.Codegen.EnumCtor2.txt │ │ ├── Assembly.Codegen.Event.txt │ │ ├── Assembly.Codegen.Event2.txt │ │ ├── Assembly.Codegen.FailedThen.txt │ │ ├── Assembly.Codegen.ForEach.txt │ │ ├── Assembly.Codegen.GlobalVariable.txt │ │ ├── Assembly.Codegen.HelloWorld.txt │ │ ├── Assembly.Codegen.IfNotNull.txt │ │ ├── Assembly.Codegen.LetIn.txt │ │ ├── Assembly.Codegen.ListProcessing.txt │ │ ├── Assembly.Codegen.MapProcessing.txt │ │ ├── Assembly.Codegen.MethodClosure.txt │ │ ├── Assembly.Codegen.NamedLambda.txt │ │ ├── Assembly.Codegen.NestedLambda.txt │ │ ├── Assembly.Codegen.NewCustomInterface.txt │ │ ├── Assembly.Codegen.NewCustomInterface2.txt │ │ ├── Assembly.Codegen.NewCustomInterface3.txt │ │ ├── Assembly.Codegen.NewEmptyInterface.txt │ │ ├── Assembly.Codegen.NewInterface.txt │ │ ├── Assembly.Codegen.NullableCast.txt │ │ ├── Assembly.Codegen.ObservableList.txt │ │ ├── Assembly.Codegen.OpAdd.txt │ │ ├── Assembly.Codegen.OpAnd.txt │ │ ├── Assembly.Codegen.OpCompare.txt │ │ ├── Assembly.Codegen.OpCompareIndexOf.txt │ │ ├── Assembly.Codegen.OpCompareReference.txt │ │ ├── Assembly.Codegen.OpCompareStruct1.txt │ │ ├── Assembly.Codegen.OpCompareStruct2.txt │ │ ├── Assembly.Codegen.OpCompareWithString.txt │ │ ├── Assembly.Codegen.OpDiv.txt │ │ ├── Assembly.Codegen.OpMod.txt │ │ ├── Assembly.Codegen.OpMul.txt │ │ ├── Assembly.Codegen.OpNegative.txt │ │ ├── Assembly.Codegen.OpNot.txt │ │ ├── Assembly.Codegen.OpOr.txt │ │ ├── Assembly.Codegen.OpPositive.txt │ │ ├── Assembly.Codegen.OpShl.txt │ │ ├── Assembly.Codegen.OpShr.txt │ │ ├── Assembly.Codegen.OpSub.txt │ │ ├── Assembly.Codegen.OpXor.txt │ │ ├── Assembly.Codegen.OrderedLambda.txt │ │ ├── Assembly.Codegen.Overloading.txt │ │ ├── Assembly.Codegen.Property.txt │ │ ├── Assembly.Codegen.RecursiveFunction.txt │ │ ├── Assembly.Codegen.StaticInit.txt │ │ ├── Assembly.Codegen.StaticMethod.txt │ │ ├── Assembly.Codegen.StructCtor.txt │ │ ├── Assembly.Codegen.StructCtor2.txt │ │ ├── Assembly.Codegen.TryCatch.txt │ │ ├── Assembly.Codegen.TryFinally.txt │ │ ├── Assembly.Codegen.TryFinally2.txt │ │ ├── Assembly.Codegen.TypeOf.txt │ │ ├── Assembly.Codegen.TypeTesting.txt │ │ ├── Assembly.Codegen.WorkflowAttributes.txt │ │ ├── Assembly.Codegen.WorkflowHints.txt │ │ ├── Assembly.Codegen.WorkflowMultiFiles.txt │ │ ├── Parsing.AnalyzerError.A0_WrongFormatStringSyntax.txt │ │ ├── Parsing.AnalyzerError.A0_WrongFormatStringSyntax2.txt │ │ ├── Parsing.AnalyzerError.A10_AnonymousLambdaToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_AnonymousLambdaToWrongFunctionType.txt │ │ ├── Parsing.AnalyzerError.A10_AssignToList.txt │ │ ├── Parsing.AnalyzerError.A10_AssignToVariable.txt │ │ ├── Parsing.AnalyzerError.A10_BaseToDerived.txt │ │ ├── Parsing.AnalyzerError.A10_ConstructorToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_FunctionLambdaToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_FunctionLambdaToWrongFunctionType.txt │ │ ├── Parsing.AnalyzerError.A10_FunctionMemberToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_NullableToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_NullableToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A10_NullableToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A10_NullableToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OfBaseToDerived.txt │ │ ├── Parsing.AnalyzerError.A10_OfNullableToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_OfNullableToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A10_OfNullableToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A10_OfNullableToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OfOrderedLambdaToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OfOrderedLambdaToWrongBody.txt │ │ ├── Parsing.AnalyzerError.A10_OfOrderedLambdaToWrongFunctionType.txt │ │ ├── Parsing.AnalyzerError.A10_OfRawPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_OfRawPtrToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A10_OfRawPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OfSharedPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_OfSharedPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OfSharedToRaw.txt │ │ ├── Parsing.AnalyzerError.A10_OfStructToToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_OfStructToToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A10_OfStructToToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A10_OfStructToToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OrderedLambdaToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OrderedLambdaToWrongBody.txt │ │ ├── Parsing.AnalyzerError.A10_OrderedLambdaToWrongFunctionType.txt │ │ ├── Parsing.AnalyzerError.A10_PropertyMemberToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_RawPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_RawPtrToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A10_RawPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_SharedPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_SharedPtrToRaw.txt │ │ ├── Parsing.AnalyzerError.A10_SharedPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_StaticMethodReturnTypeNotCompatible.txt │ │ ├── Parsing.AnalyzerError.A10_StaticMethodReturnTypeNotCompatible2.txt │ │ ├── Parsing.AnalyzerError.A10_StructToToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_StructToToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A10_StructToToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A10_StructToToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_WrongAttachExpression.txt │ │ ├── Parsing.AnalyzerError.A10_WrongAttachExpressionToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_WrongDetachExpression.txt │ │ ├── Parsing.AnalyzerError.A10_WrongDetachExpressionToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_WrongIfVariable.txt │ │ ├── Parsing.AnalyzerError.A10_WrongStateArgument.txt │ │ ├── Parsing.AnalyzerError.A10_WrongTypeOfExpressionToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_WrongTypeOfTypeToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_WrongTypeTestingToStruct.txt │ │ ├── Parsing.AnalyzerError.A11_AsNullableToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A11_AsNullableToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A11_AsRawPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A11_AsRawPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A11_AsSharedPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A11_AsSharedPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A11_AsStructToToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A11_AsStructToToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A11_NullableToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A11_NullableToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A11_RawPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A11_RawPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A11_SharedPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A11_SharedPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A11_StructToToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A11_StructToToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A12_StructToStruct.txt │ │ ├── Parsing.AnalyzerError.A13_IntegerLiteralOutOfRange.txt │ │ ├── Parsing.AnalyzerError.A14_FailedThenExpressionCannotMergeType.txt │ │ ├── Parsing.AnalyzerError.A14_IfExpressionCannotMergeType.txt │ │ ├── Parsing.AnalyzerError.A14_IncompatibleList.txt │ │ ├── Parsing.AnalyzerError.A14_IncompatibleMap.txt │ │ ├── Parsing.AnalyzerError.A14_IncompatibleSwitch.txt │ │ ├── Parsing.AnalyzerError.A14_RangeCannotMergeType.txt │ │ ├── Parsing.AnalyzerError.A14_SetTestingInWrongCollection.txt │ │ ├── Parsing.AnalyzerError.A15_RangeOfBoolean.txt │ │ ├── Parsing.AnalyzerError.A17_IndexNotEnumerableObject.txt │ │ ├── Parsing.AnalyzerError.A18_ForInNotEnumerableObject.txt │ │ ├── Parsing.AnalyzerError.A18_SetTestingInNotEnumerableObject.txt │ │ ├── Parsing.AnalyzerError.A19_CallStruct.txt │ │ ├── Parsing.AnalyzerError.A1_WrongSimpleObserveExpression.txt │ │ ├── Parsing.AnalyzerError.A20_CallWrongArgumentCount.txt │ │ ├── Parsing.AnalyzerError.A20_CallWrongArgumentCount2.txt │ │ ├── Parsing.AnalyzerError.A20_CallWrongArgumentCount3.txt │ │ ├── Parsing.AnalyzerError.A21_CallWrongArgument.txt │ │ ├── Parsing.AnalyzerError.A21_CallWrongArgument2.txt │ │ ├── Parsing.AnalyzerError.A21_CoroutineReturnTypeNotCompatible.txt │ │ ├── Parsing.AnalyzerError.A22_CannotPickOverloadedConstructor.txt │ │ ├── Parsing.AnalyzerError.A22_CannotPickOverloadedConstructor2.txt │ │ ├── Parsing.AnalyzerError.A22_CannotPickOverloadedFunctions.txt │ │ ├── Parsing.AnalyzerError.A23_ImplementStruct.txt │ │ ├── Parsing.AnalyzerError.A23_NewStruct.txt │ │ ├── Parsing.AnalyzerError.A24_CallRawConstructorToShared.txt │ │ ├── Parsing.AnalyzerError.A24_CallRawConstructorToSharedInterface.txt │ │ ├── Parsing.AnalyzerError.A24_CallSharedConstructorToRawInterface.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToArgument.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToCapturedVariable.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToCapturedVariable2.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToCapturedVariable3.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToCapturedVariable4.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToConstant.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToCoroutineResult.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToFunction.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToFunctionCall.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToLambdaArgument.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToOrderedLambdaArgument.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToReadonlyList.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToReadonlyProperty.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToSmcSwitchArgument.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToStructField.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToThis.txt │ │ ├── Parsing.AnalyzerError.A26_CallEventOutsideOfInterface.txt │ │ ├── Parsing.AnalyzerError.A26_CallMethodOutsideOfInterface.txt │ │ ├── Parsing.AnalyzerError.A26_CallPropertyOutsideOfInterface.txt │ │ ├── Parsing.AnalyzerError.A27_CallBaseMethodInsideInterface.txt │ │ ├── Parsing.AnalyzerError.A27_CallEventInsideInterface.txt │ │ ├── Parsing.AnalyzerError.A27_CallMethodInsideInterface.txt │ │ ├── Parsing.AnalyzerError.A27_CallOuterBaseMethodInsideInterface.txt │ │ ├── Parsing.AnalyzerError.A27_CallOuterMethodInsideInterface.txt │ │ ├── Parsing.AnalyzerError.A27_CallPropertyInsideBaseConstructorCall.txt │ │ ├── Parsing.AnalyzerError.A27_CallPropertyInsideInterface.txt │ │ ├── Parsing.AnalyzerError.A28_FieldsInitializeUsingEachOther1.txt │ │ ├── Parsing.AnalyzerError.A28_FieldsInitializeUsingEachOther2.txt │ │ ├── Parsing.AnalyzerError.A28_FieldsInitializeUsingEachOther3.txt │ │ ├── Parsing.AnalyzerError.A28_FieldsInitializeUsingEachOther4.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInAnonymousLambda.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInAnonymousLambda2.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInClassField.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInClassStaticFunction.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInConstructor.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInGlobalFunction.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInGlobalVariable.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInInterfaceStaticFunction.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInNewExpressionField.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInOrderedLambda.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInOrderedLambda2.txt │ │ ├── Parsing.AnalyzerError.A2_EmptyExtendedObserveEvent.txt │ │ ├── Parsing.AnalyzerError.A2_WrongSimpleObserveEvent.txt │ │ ├── Parsing.AnalyzerError.A31_ExpressionNotConstant.txt │ │ ├── Parsing.AnalyzerError.A31_ExpressionNotConstant2.txt │ │ ├── Parsing.AnalyzerError.A31_ExpressionNotConstant3.txt │ │ ├── Parsing.AnalyzerError.A31_ExpressionNotConstant4.txt │ │ ├── Parsing.AnalyzerError.A31_ExpressionNotConstant5.txt │ │ ├── Parsing.AnalyzerError.A32_MixinCastBetweenUnrelatedInterfaces.txt │ │ ├── Parsing.AnalyzerError.A33_StrongExpectedTypeCastToImplicitType.txt │ │ ├── Parsing.AnalyzerError.A33_WeakExpectedTypeCastToImplicitType.txt │ │ ├── Parsing.AnalyzerError.A3_ObserveNotInBind.txt │ │ ├── Parsing.AnalyzerError.A4_BindInBind.txt │ │ ├── Parsing.AnalyzerError.A5_ConstructorMixMapAndList.txt │ │ ├── Parsing.AnalyzerError.A5_ConstructorMixStructAndList.txt │ │ ├── Parsing.AnalyzerError.A5_ConstructorMixStructAndList2.txt │ │ ├── Parsing.AnalyzerError.A5_DuplicatedConstructorField.txt │ │ ├── Parsing.AnalyzerError.A7_EventIsNotExpression.txt │ │ ├── Parsing.AnalyzerError.A7_ScopeNameIsNotExpression.txt │ │ ├── Parsing.AnalyzerError.A7_ScopeNameIsNotExpression2.txt │ │ ├── Parsing.AnalyzerError.A8_ExpressionIsNotScopeName.txt │ │ ├── Parsing.AnalyzerError.A9_ConstructorCannotResolveType.txt │ │ ├── Parsing.AnalyzerError.A9_ExpressionCannotResolveType.txt │ │ ├── Parsing.AnalyzerError.A9_LetExpressionCannotResolveType.txt │ │ ├── Parsing.AnalyzerError.A9_NullCannotResolveType.txt │ │ ├── Parsing.AnalyzerError.A9_OrderedLambdaCannotResolveType.txt │ │ ├── Parsing.AnalyzerError.B0_VoidArgument.txt │ │ ├── Parsing.AnalyzerError.B0_VoidAutoProperty.txt │ │ ├── Parsing.AnalyzerError.B0_VoidEventArgument.txt │ │ ├── Parsing.AnalyzerError.B0_VoidMapElement.txt │ │ ├── Parsing.AnalyzerError.B0_VoidProperty.txt │ │ ├── Parsing.AnalyzerError.B0_VoidVariable.txt │ │ ├── Parsing.AnalyzerError.B1_InterfaceArgument.txt │ │ ├── Parsing.AnalyzerError.B1_InterfaceMapElement.txt │ │ ├── Parsing.AnalyzerError.B1_InterfaceVariable.txt │ │ ├── Parsing.AnalyzerError.B2_RawPointerToEnumerable.txt │ │ ├── Parsing.AnalyzerError.B2_RawPointerToMap.txt │ │ ├── Parsing.AnalyzerError.B2_RawPointerToString.txt │ │ ├── Parsing.AnalyzerError.B2_RawPointerToStruct.txt │ │ ├── Parsing.AnalyzerError.B2_RawPointerToVoid.txt │ │ ├── Parsing.AnalyzerError.B3_SharedPointerToEnumerable.txt │ │ ├── Parsing.AnalyzerError.B3_SharedPointerToMap.txt │ │ ├── Parsing.AnalyzerError.B3_SharedPointerToString.txt │ │ ├── Parsing.AnalyzerError.B3_SharedPointerToStruct.txt │ │ ├── Parsing.AnalyzerError.B3_SharedPointerToVoid.txt │ │ ├── Parsing.AnalyzerError.B4_NullableToClass.txt │ │ ├── Parsing.AnalyzerError.B4_NullableToEnumerable.txt │ │ ├── Parsing.AnalyzerError.B4_NullableToMap.txt │ │ ├── Parsing.AnalyzerError.B4_NullableToVoid.txt │ │ ├── Parsing.AnalyzerError.B5_ChildOfEnumerable.txt │ │ ├── Parsing.AnalyzerError.B5_ChildOfMap.txt │ │ ├── Parsing.AnalyzerError.B6_FunctionIsNotType.txt │ │ ├── Parsing.AnalyzerError.B6_PropertyIsNotType.txt │ │ ├── Parsing.AnalyzerError.B6_VariableIsNotType.txt │ │ ├── Parsing.AnalyzerError.B7_ClassNotForValue.txt │ │ ├── Parsing.AnalyzerError.C0_BreakNotInLoop.txt │ │ ├── Parsing.AnalyzerError.C10_CoOperatorNotExists.txt │ │ ├── Parsing.AnalyzerError.C10_CoOperatorNotExists2.txt │ │ ├── Parsing.AnalyzerError.C10_CoOperatorNotExists3.txt │ │ ├── Parsing.AnalyzerError.C10_CoOperatorNotExists4.txt │ │ ├── Parsing.AnalyzerError.C11_CoOperatorCannotResolveResultType.txt │ │ ├── Parsing.AnalyzerError.C11_CoOperatorCannotResolveResultType2.txt │ │ ├── Parsing.AnalyzerError.C11_CoOperatorCannotResolveResultType3.txt │ │ ├── Parsing.AnalyzerError.C12_CoProviderCreatorNotExists.txt │ │ ├── Parsing.AnalyzerError.C12_CoProviderCreatorNotExists2.txt │ │ ├── Parsing.AnalyzerError.C12_CoProviderCreatorNotExists3.txt │ │ ├── Parsing.AnalyzerError.C13_GotoLabelNotExists.txt │ │ ├── Parsing.AnalyzerError.C13_GotoLabelNotExists2.txt │ │ ├── Parsing.AnalyzerError.C14_TooManyGotoTargets.txt │ │ ├── Parsing.AnalyzerError.C15_StateSwitchNotInStateDecl.txt │ │ ├── Parsing.AnalyzerError.C16_GotoStateNotInStateDecl.txt │ │ ├── Parsing.AnalyzerError.C16_PushStateNotInStateDecl.txt │ │ ├── Parsing.AnalyzerError.C17_StateInputNotExists.txt │ │ ├── Parsing.AnalyzerError.C18_StateInputArgumentNotMatch.txt │ │ ├── Parsing.AnalyzerError.C19_StateNotExists.txt │ │ ├── Parsing.AnalyzerError.C1_ContinueNotInLoop.txt │ │ ├── Parsing.AnalyzerError.C20_StateArgumentNotMatch.txt │ │ ├── Parsing.AnalyzerError.C2_RethrowNotInCatch.txt │ │ ├── Parsing.AnalyzerError.C3_TryMissCatchAndFinally.txt │ │ ├── Parsing.AnalyzerError.C4_ReturnMissExpression.txt │ │ ├── Parsing.AnalyzerError.C5_DeleteNonRawPointer.txt │ │ ├── Parsing.AnalyzerError.C6_ReturnValueInConstructor.txt │ │ ├── Parsing.AnalyzerError.C6_ReturnValueInCoroutine.txt │ │ ├── Parsing.AnalyzerError.C6_ReturnValueInDestructor.txt │ │ ├── Parsing.AnalyzerError.C6_ReturnValueInStaticInit.txt │ │ ├── Parsing.AnalyzerError.C6_ReturnValueInVoidFunction.txt │ │ ├── Parsing.AnalyzerError.C7_CoPauseInCoProvider.txt │ │ ├── Parsing.AnalyzerError.C7_CoPauseInFunction.txt │ │ ├── Parsing.AnalyzerError.C7_CoPauseInLambdaInCoroutine.txt │ │ ├── Parsing.AnalyzerError.C7_CoPauseInPause.txt │ │ ├── Parsing.AnalyzerError.C8_CoOperatorInFunction.txt │ │ ├── Parsing.AnalyzerError.C8_CoOperatorInFunction2.txt │ │ ├── Parsing.AnalyzerError.C8_CoOperatorInLambdaInCoProvider.txt │ │ ├── Parsing.AnalyzerError.C8_CoOperatorInLambdaInCoProvider2.txt │ │ ├── Parsing.AnalyzerError.C8_CoProviderInCoroutine.txt │ │ ├── Parsing.AnalyzerError.C8_CoProviderInCoroutine2.txt │ │ ├── Parsing.AnalyzerError.C9_CoProviderNotExists.txt │ │ ├── Parsing.AnalyzerError.C9_CoProviderNotExists2.txt │ │ ├── Parsing.AnalyzerError.C9_CoProviderNotExists3.txt │ │ ├── Parsing.AnalyzerError.C9_CoProviderNotExists4.txt │ │ ├── Parsing.AnalyzerError.CPP1_InternalClassCycleInheritance.txt │ │ ├── Parsing.AnalyzerError.CPP2_NonCustomFileClassForceIntoCustomFile.txt │ │ ├── Parsing.AnalyzerError.D0_AnonymousFunction.txt │ │ ├── Parsing.AnalyzerError.D0_AnonymousInterfaceFunction.txt │ │ ├── Parsing.AnalyzerError.D0_ClassMethodNoBlock.txt │ │ ├── Parsing.AnalyzerError.D0_FunctionNoBlock.txt │ │ ├── Parsing.AnalyzerError.D0_InterfaceMethodHasBlock.txt │ │ ├── Parsing.AnalyzerError.D0_InterfaceStaticMethodNoBlock.txt │ │ ├── Parsing.AnalyzerError.D10_FlagValueNotExists.txt │ │ ├── Parsing.AnalyzerError.D11_DuplicatedEnumValue.txt │ │ ├── Parsing.AnalyzerError.D12_StructContainsClass.txt │ │ ├── Parsing.AnalyzerError.D12_StructContainsIDescriptable.txt │ │ ├── Parsing.AnalyzerError.D12_StructContainsInterface.txt │ │ ├── Parsing.AnalyzerError.D12_StructContainsObject.txt │ │ ├── Parsing.AnalyzerError.D13_StructRecursivelyIncludeItself.txt │ │ ├── Parsing.AnalyzerError.D13_StructRecursivelyIncludeItself2.txt │ │ ├── Parsing.AnalyzerError.D14_DuplicatedStructMember.txt │ │ ├── Parsing.AnalyzerError.D15_AttributeNotExists.txt │ │ ├── Parsing.AnalyzerError.D16_SmcNotInheritFromStateMachine.txt │ │ ├── Parsing.AnalyzerError.D17_SmcMissingDefaultState.txt │ │ ├── Parsing.AnalyzerError.D1_DuplicatedClass.txt │ │ ├── Parsing.AnalyzerError.D1_DuplicatedFunction.txt │ │ ├── Parsing.AnalyzerError.D1_DuplicatedNamespace.txt │ │ ├── Parsing.AnalyzerError.D1_DuplicatedVariable.txt │ │ ├── Parsing.AnalyzerError.D1_OverloadedFunction.txt │ │ ├── Parsing.AnalyzerError.D1_OverloadedNamespace.txt │ │ ├── Parsing.AnalyzerError.D1_OverloadedVariable.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedClass.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedFunctionArgument.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedLambdaFunctionArgument.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedLetVariable.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedState.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedStateInput.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedStateSwitchArgument.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedVariable.txt │ │ ├── Parsing.AnalyzerError.D3_ImplementMissFunction.txt │ │ ├── Parsing.AnalyzerError.D4_ImplementUnexistsFunction.txt │ │ ├── Parsing.AnalyzerError.D6_ImplementDuplicateFunction.txt │ │ ├── Parsing.AnalyzerError.D7_ConstructorOutsideOfClasses.txt │ │ ├── Parsing.AnalyzerError.D7_DestructorOutsideOfClasses.txt │ │ ├── Parsing.AnalyzerError.D7_EventOutsideOfClasses.txt │ │ ├── Parsing.AnalyzerError.D7_PropertyOutsideOfClasses.txt │ │ ├── Parsing.AnalyzerError.D7_StaticInitInClass.txt │ │ ├── Parsing.AnalyzerError.D7_StaticInitInInterface.txt │ │ ├── Parsing.AnalyzerError.D8_ClassInNewInterface.txt │ │ ├── Parsing.AnalyzerError.D8_EventInNewInterface.txt │ │ ├── Parsing.AnalyzerError.D8_NamespaceInNewInterface.txt │ │ ├── Parsing.AnalyzerError.D8_PropertyInNewInterface.txt │ │ ├── Parsing.AnalyzerError.D9_EnumValue.txt │ │ ├── Parsing.AnalyzerError.D9_FlagValue.txt │ │ ├── Parsing.AnalyzerError.E0_NoWildCard.txt │ │ ├── Parsing.AnalyzerError.E0_TooManyWildCard.txt │ │ ├── Parsing.AnalyzerError.E0_WildCardInWrongPlace.txt │ │ ├── Parsing.AnalyzerError.F0_ExpressionTopQualifiedSymbolNotExists.txt │ │ ├── Parsing.AnalyzerError.F0_TypeTopQualifiedSymbolNotExists.txt │ │ ├── Parsing.AnalyzerError.F1_ExpressionChildSymbolNotExists.txt │ │ ├── Parsing.AnalyzerError.F1_ObservedEventNotExists.txt │ │ ├── Parsing.AnalyzerError.F1_ObservedEventNotExists2.txt │ │ ├── Parsing.AnalyzerError.F1_ObservedPropertyNotExists.txt │ │ ├── Parsing.AnalyzerError.F1_ObservedPropertyNotExists2.txt │ │ ├── Parsing.AnalyzerError.F1_StaticMethodNotExists.txt │ │ ├── Parsing.AnalyzerError.F1_TypeChildSymbolNotExists.txt │ │ ├── Parsing.AnalyzerError.F1_TypeMemberNotExists.txt │ │ ├── Parsing.AnalyzerError.F2_ExpressionReferenceNotExists.txt │ │ ├── Parsing.AnalyzerError.F2_ExpressionReferenceNotExists2.txt │ │ ├── Parsing.AnalyzerError.F2_ExpressionReferenceNotExists3.txt │ │ ├── Parsing.AnalyzerError.F2_ExpressionReferenceNotExists4.txt │ │ ├── Parsing.AnalyzerError.F2_TypeReferenceNotExists.txt │ │ ├── Parsing.AnalyzerError.F2_TypeReferenceNotExists2.txt │ │ ├── Parsing.AnalyzerError.F3_ExpressionReferenceToFunctionsByUsing.txt │ │ ├── Parsing.AnalyzerError.F3_ExpressionReferenceToFunctionsInLocalAndUsing.txt │ │ ├── Parsing.AnalyzerError.F3_ExpressionReferenceToFunctionsInNestedNamespaces.txt │ │ ├── Parsing.AnalyzerError.F3_ExpressionReferenceToVariablesInNestedBlocks.txt │ │ ├── Parsing.AnalyzerError.F3_TypeReferenceToFunctionsByUsing.txt │ │ ├── Parsing.AnalyzerError.F3_TypeReferenceToFunctionsInLocalAndUsing.txt │ │ ├── Parsing.AnalyzerError.F3_TypeReferenceToFunctionsInNestedNamespaces.txt │ │ ├── Parsing.AnalyzerError.F3_TypeReferenceToVariablesInNestedBlocks.txt │ │ ├── Parsing.AnalyzerError.G10_DuplicatedBaseClass1.txt │ │ ├── Parsing.AnalyzerError.G10_DuplicatedBaseClass2.txt │ │ ├── Parsing.AnalyzerError.G10_DuplicatedBaseClass3.txt │ │ ├── Parsing.AnalyzerError.G10_DuplicatedBaseClass4.txt │ │ ├── Parsing.AnalyzerError.G10_DuplicatedBaseInterface1.txt │ │ ├── Parsing.AnalyzerError.G10_DuplicatedBaseInterface2.txt │ │ ├── Parsing.AnalyzerError.G11_WrongBaseConstructorTypes.txt │ │ ├── Parsing.AnalyzerError.G12_DuplicatedBaseConstructorTypes.txt │ │ ├── Parsing.AnalyzerError.G13_DuplicatedDestructor.txt │ │ ├── Parsing.AnalyzerError.G13_InitializeAutoPropertyInInterface.txt │ │ ├── Parsing.AnalyzerError.G13_UnInitializedAutoPropertyInClass.txt │ │ ├── Parsing.AnalyzerError.G13_UnInitializedAutoPropertyInNewExpression.txt │ │ ├── Parsing.AnalyzerError.G1_NormalAutoPropertyInNewInterface.txt │ │ ├── Parsing.AnalyzerError.G1_StaticAutoPropertyInClass.txt │ │ ├── Parsing.AnalyzerError.G1_StaticAutoPropertyInInterface.txt │ │ ├── Parsing.AnalyzerError.G1_StaticAutoPropertyInNewInterface.txt │ │ ├── Parsing.AnalyzerError.G2_NamespaceInClass.txt │ │ ├── Parsing.AnalyzerError.G3_UnexistingPropertyEvent.txt │ │ ├── Parsing.AnalyzerError.G3_UnexistingPropertyGetter.txt │ │ ├── Parsing.AnalyzerError.G3_UnexistingPropertySetter.txt │ │ ├── Parsing.AnalyzerError.G4_TooManyPropertyEvent.txt │ │ ├── Parsing.AnalyzerError.G4_TooManyPropertyGetter.txt │ │ ├── Parsing.AnalyzerError.G4_TooManyPropertySetter.txt │ │ ├── Parsing.AnalyzerError.G5_PropertyGetterWrongArgumentType.txt │ │ ├── Parsing.AnalyzerError.G5_PropertyGetterWrongReturnType.txt │ │ ├── Parsing.AnalyzerError.G5_PropertySetterWrongArgumentType.txt │ │ ├── Parsing.AnalyzerError.G5_PropertySetterWrongReturnType.txt │ │ ├── Parsing.AnalyzerError.G6_WrongBaseConstructorType.txt │ │ ├── Parsing.AnalyzerError.G6_WrongBaseType.txt │ │ ├── Parsing.AnalyzerError.G6_WrongBaseTypeOfClass1.txt │ │ ├── Parsing.AnalyzerError.G6_WrongBaseTypeOfClass2.txt │ │ ├── Parsing.AnalyzerError.G6_WrongBaseTypeOfInterface1.txt │ │ ├── Parsing.AnalyzerError.G6_WrongBaseTypeOfInterface2.txt │ │ ├── Parsing.AnalyzerError.G6_WrongInterfaceBaseType.txt │ │ ├── Parsing.AnalyzerError.G6_WrongInterfaceBaseType2.txt │ │ ├── Parsing.AnalyzerError.G6_WrongObjectBaseType.txt │ │ ├── Parsing.AnalyzerError.G6_WrongObjectBaseType2.txt │ │ ├── Parsing.AnalyzerError.G8_OverrideAutoPropertyInClass.txt │ │ ├── Parsing.AnalyzerError.G8_OverrideAutoPropertyInInterface.txt │ │ ├── Parsing.AnalyzerError.G8_OverrideInInterface.txt │ │ ├── Parsing.AnalyzerError.G9_MissingFieldType.txt │ │ ├── Parsing.AnalyzerScope.ModuleA.txt │ │ ├── Parsing.AnalyzerScope.ModuleB.txt │ │ ├── Parsing.AnalyzerScope.ModuleC.txt │ │ ├── Parsing.Codegen.AnonymousLambda.txt │ │ ├── Parsing.Codegen.BindComplex.txt │ │ ├── Parsing.Codegen.BindCustomInterface.txt │ │ ├── Parsing.Codegen.BindCustomInterface2.txt │ │ ├── Parsing.Codegen.BindFormat.txt │ │ ├── Parsing.Codegen.BindLet.txt │ │ ├── Parsing.Codegen.BindNull.txt │ │ ├── Parsing.Codegen.BindSimple.txt │ │ ├── Parsing.Codegen.BindSimple2.txt │ │ ├── Parsing.Codegen.CallStaticMethod.txt │ │ ├── Parsing.Codegen.ClassCtor.txt │ │ ├── Parsing.Codegen.ClassDtor.txt │ │ ├── Parsing.Codegen.ClassField.txt │ │ ├── Parsing.Codegen.ClassMethod.txt │ │ ├── Parsing.Codegen.CoAsync.txt │ │ ├── Parsing.Codegen.CoAsync2.txt │ │ ├── Parsing.Codegen.CoEnum.txt │ │ ├── Parsing.Codegen.CoEnum2.txt │ │ ├── Parsing.Codegen.CoRawCoroutine.txt │ │ ├── Parsing.Codegen.CoRawCoroutine2.txt │ │ ├── Parsing.Codegen.CoRawCoroutine3.txt │ │ ├── Parsing.Codegen.CoRawCoroutine4.txt │ │ ├── Parsing.Codegen.CoRawCoroutine5.txt │ │ ├── Parsing.Codegen.CoRawCoroutine6.txt │ │ ├── Parsing.Codegen.CoRawCoroutine7.txt │ │ ├── Parsing.Codegen.CoSmcCalculator.txt │ │ ├── Parsing.Codegen.CoSmcGoto.txt │ │ ├── Parsing.Codegen.CoSmcPush.txt │ │ ├── Parsing.Codegen.CoSmcSwitchD1.txt │ │ ├── Parsing.Codegen.CoSmcSwitchD2.txt │ │ ├── Parsing.Codegen.CoSmcSwitchI1.txt │ │ ├── Parsing.Codegen.CoSmcSwitchI2.txt │ │ ├── Parsing.Codegen.CoSmcSwitchIR1.txt │ │ ├── Parsing.Codegen.CoSmcSwitchIR2.txt │ │ ├── Parsing.Codegen.CoSmcSwitchP1.txt │ │ ├── Parsing.Codegen.CoSmcSwitchP2.txt │ │ ├── Parsing.Codegen.CoSmcSwitchPR1.txt │ │ ├── Parsing.Codegen.CoSmcSwitchPR2.txt │ │ ├── Parsing.Codegen.CoSmcTryCatch1.txt │ │ ├── Parsing.Codegen.CoSmcTryCatch2.txt │ │ ├── Parsing.Codegen.ControlFlow.txt │ │ ├── Parsing.Codegen.Delete.txt │ │ ├── Parsing.Codegen.ElementInSet.txt │ │ ├── Parsing.Codegen.EnumCtor.txt │ │ ├── Parsing.Codegen.EnumCtor2.txt │ │ ├── Parsing.Codegen.Event.txt │ │ ├── Parsing.Codegen.Event2.txt │ │ ├── Parsing.Codegen.FailedThen.txt │ │ ├── Parsing.Codegen.ForEach.txt │ │ ├── Parsing.Codegen.GlobalVariable.txt │ │ ├── Parsing.Codegen.HelloWorld.txt │ │ ├── Parsing.Codegen.IfNotNull.txt │ │ ├── Parsing.Codegen.LetIn.txt │ │ ├── Parsing.Codegen.ListProcessing.txt │ │ ├── Parsing.Codegen.MapProcessing.txt │ │ ├── Parsing.Codegen.MethodClosure.txt │ │ ├── Parsing.Codegen.NamedLambda.txt │ │ ├── Parsing.Codegen.NestedLambda.txt │ │ ├── Parsing.Codegen.NewCustomInterface.txt │ │ ├── Parsing.Codegen.NewCustomInterface2.txt │ │ ├── Parsing.Codegen.NewCustomInterface3.txt │ │ ├── Parsing.Codegen.NewEmptyInterface.txt │ │ ├── Parsing.Codegen.NewInterface.txt │ │ ├── Parsing.Codegen.NullableCast.txt │ │ ├── Parsing.Codegen.ObservableList.txt │ │ ├── Parsing.Codegen.OpAdd.txt │ │ ├── Parsing.Codegen.OpAnd.txt │ │ ├── Parsing.Codegen.OpCompare.txt │ │ ├── Parsing.Codegen.OpCompareIndexOf.txt │ │ ├── Parsing.Codegen.OpCompareReference.txt │ │ ├── Parsing.Codegen.OpCompareStruct1.txt │ │ ├── Parsing.Codegen.OpCompareStruct2.txt │ │ ├── Parsing.Codegen.OpCompareWithString.txt │ │ ├── Parsing.Codegen.OpDiv.txt │ │ ├── Parsing.Codegen.OpMod.txt │ │ ├── Parsing.Codegen.OpMul.txt │ │ ├── Parsing.Codegen.OpNegative.txt │ │ ├── Parsing.Codegen.OpNot.txt │ │ ├── Parsing.Codegen.OpOr.txt │ │ ├── Parsing.Codegen.OpPositive.txt │ │ ├── Parsing.Codegen.OpShl.txt │ │ ├── Parsing.Codegen.OpShr.txt │ │ ├── Parsing.Codegen.OpSub.txt │ │ ├── Parsing.Codegen.OpXor.txt │ │ ├── Parsing.Codegen.OrderedLambda.txt │ │ ├── Parsing.Codegen.Overloading.txt │ │ ├── Parsing.Codegen.Property.txt │ │ ├── Parsing.Codegen.RecursiveFunction.txt │ │ ├── Parsing.Codegen.StaticInit.txt │ │ ├── Parsing.Codegen.StaticMethod.txt │ │ ├── Parsing.Codegen.StructCtor.txt │ │ ├── Parsing.Codegen.StructCtor2.txt │ │ ├── Parsing.Codegen.TryCatch.txt │ │ ├── Parsing.Codegen.TryFinally.txt │ │ ├── Parsing.Codegen.TryFinally2.txt │ │ ├── Parsing.Codegen.TypeOf.txt │ │ ├── Parsing.Codegen.TypeTesting.txt │ │ ├── Parsing.Codegen.WorkflowAttributes.txt │ │ ├── Parsing.Codegen.WorkflowHints.txt │ │ ├── Parsing.Codegen.WorkflowMultiFiles.txt │ │ ├── Parsing.Declaration.Class.txt │ │ ├── Parsing.Declaration.Coroutine.txt │ │ ├── Parsing.Declaration.Enum.txt │ │ ├── Parsing.Declaration.Function.txt │ │ ├── Parsing.Declaration.HelloWorld.txt │ │ ├── Parsing.Declaration.Interface.txt │ │ ├── Parsing.Declaration.Namespace.txt │ │ ├── Parsing.Declaration.NestedNamespace.txt │ │ ├── Parsing.Declaration.StateMachine.txt │ │ ├── Parsing.Declaration.Struct.txt │ │ ├── Parsing.Declaration.Variable.txt │ │ ├── Parsing.Expression.Attach.txt │ │ ├── Parsing.Expression.BinaryAscending.txt │ │ ├── Parsing.Expression.BinaryDescending.txt │ │ ├── Parsing.Expression.Bind.txt │ │ ├── Parsing.Expression.Bracket.txt │ │ ├── Parsing.Expression.Call.txt │ │ ├── Parsing.Expression.CastStrong.txt │ │ ├── Parsing.Expression.CastWeak.txt │ │ ├── Parsing.Expression.Child.txt │ │ ├── Parsing.Expression.Coroutine.txt │ │ ├── Parsing.Expression.Detach.txt │ │ ├── Parsing.Expression.EmptyCollection.txt │ │ ├── Parsing.Expression.ExtendedObserve1.txt │ │ ├── Parsing.Expression.ExtendedObserve2.txt │ │ ├── Parsing.Expression.False.txt │ │ ├── Parsing.Expression.Float.txt │ │ ├── Parsing.Expression.FormatString.txt │ │ ├── Parsing.Expression.Function.txt │ │ ├── Parsing.Expression.HelloWorld.txt │ │ ├── Parsing.Expression.Index.txt │ │ ├── Parsing.Expression.Infer.txt │ │ ├── Parsing.Expression.Integer.txt │ │ ├── Parsing.Expression.IsNotNull.txt │ │ ├── Parsing.Expression.IsNotType.txt │ │ ├── Parsing.Expression.IsNull.txt │ │ ├── Parsing.Expression.IsType.txt │ │ ├── Parsing.Expression.Let.txt │ │ ├── Parsing.Expression.List.txt │ │ ├── Parsing.Expression.Map.txt │ │ ├── Parsing.Expression.Member.txt │ │ ├── Parsing.Expression.Negative.txt │ │ ├── Parsing.Expression.New1.txt │ │ ├── Parsing.Expression.New2.txt │ │ ├── Parsing.Expression.Not.txt │ │ ├── Parsing.Expression.Null.txt │ │ ├── Parsing.Expression.OrderedLambda.txt │ │ ├── Parsing.Expression.OrderedName.txt │ │ ├── Parsing.Expression.Positive.txt │ │ ├── Parsing.Expression.Range1.txt │ │ ├── Parsing.Expression.Range2.txt │ │ ├── Parsing.Expression.Range3.txt │ │ ├── Parsing.Expression.Range4.txt │ │ ├── Parsing.Expression.Reference.txt │ │ ├── Parsing.Expression.SetIn.txt │ │ ├── Parsing.Expression.SetNotIn.txt │ │ ├── Parsing.Expression.SimpleObserve1.txt │ │ ├── Parsing.Expression.SimpleObserve2.txt │ │ ├── Parsing.Expression.String.txt │ │ ├── Parsing.Expression.True.txt │ │ ├── Parsing.Expression.TypeOfExpression.txt │ │ ├── Parsing.Expression.TypeOfType.txt │ │ ├── Parsing.Module.HelloWorld.txt │ │ ├── Parsing.Module.Useful.txt │ │ ├── Parsing.Statement.Break.txt │ │ ├── Parsing.Statement.Continue.txt │ │ ├── Parsing.Statement.Delete.txt │ │ ├── Parsing.Statement.Expression.txt │ │ ├── Parsing.Statement.ForEach.txt │ │ ├── Parsing.Statement.ForEachReversed.txt │ │ ├── Parsing.Statement.Goto.txt │ │ ├── Parsing.Statement.HelloWorld.txt │ │ ├── Parsing.Statement.If.txt │ │ ├── Parsing.Statement.IfCast.txt │ │ ├── Parsing.Statement.Raise.txt │ │ ├── Parsing.Statement.Return.txt │ │ ├── Parsing.Statement.Switch.txt │ │ ├── Parsing.Statement.Try.txt │ │ ├── Parsing.Statement.Variable.txt │ │ └── Parsing.Statement.While.txt │ └── Workflow64 │ │ ├── Assembly.Codegen.AnonymousLambda.txt │ │ ├── Assembly.Codegen.BindComplex.txt │ │ ├── Assembly.Codegen.BindCustomInterface.txt │ │ ├── Assembly.Codegen.BindCustomInterface2.txt │ │ ├── Assembly.Codegen.BindFormat.txt │ │ ├── Assembly.Codegen.BindLet.txt │ │ ├── Assembly.Codegen.BindNull.txt │ │ ├── Assembly.Codegen.BindSimple.txt │ │ ├── Assembly.Codegen.BindSimple2.txt │ │ ├── Assembly.Codegen.CallStaticMethod.txt │ │ ├── Assembly.Codegen.ClassCtor.txt │ │ ├── Assembly.Codegen.ClassDtor.txt │ │ ├── Assembly.Codegen.ClassField.txt │ │ ├── Assembly.Codegen.ClassMethod.txt │ │ ├── Assembly.Codegen.CoAsync.txt │ │ ├── Assembly.Codegen.CoAsync2.txt │ │ ├── Assembly.Codegen.CoEnum.txt │ │ ├── Assembly.Codegen.CoEnum2.txt │ │ ├── Assembly.Codegen.CoRawCoroutine.txt │ │ ├── Assembly.Codegen.CoRawCoroutine2.txt │ │ ├── Assembly.Codegen.CoRawCoroutine3.txt │ │ ├── Assembly.Codegen.CoRawCoroutine4.txt │ │ ├── Assembly.Codegen.CoRawCoroutine5.txt │ │ ├── Assembly.Codegen.CoRawCoroutine6.txt │ │ ├── Assembly.Codegen.CoRawCoroutine7.txt │ │ ├── Assembly.Codegen.CoSmcCalculator.txt │ │ ├── Assembly.Codegen.CoSmcGoto.txt │ │ ├── Assembly.Codegen.CoSmcPush.txt │ │ ├── Assembly.Codegen.CoSmcSwitchD1.txt │ │ ├── Assembly.Codegen.CoSmcSwitchD2.txt │ │ ├── Assembly.Codegen.CoSmcSwitchI1.txt │ │ ├── Assembly.Codegen.CoSmcSwitchI2.txt │ │ ├── Assembly.Codegen.CoSmcSwitchIR1.txt │ │ ├── Assembly.Codegen.CoSmcSwitchIR2.txt │ │ ├── Assembly.Codegen.CoSmcSwitchP1.txt │ │ ├── Assembly.Codegen.CoSmcSwitchP2.txt │ │ ├── Assembly.Codegen.CoSmcSwitchPR1.txt │ │ ├── Assembly.Codegen.CoSmcSwitchPR2.txt │ │ ├── Assembly.Codegen.CoSmcTryCatch1.txt │ │ ├── Assembly.Codegen.CoSmcTryCatch2.txt │ │ ├── Assembly.Codegen.ControlFlow.txt │ │ ├── Assembly.Codegen.Delete.txt │ │ ├── Assembly.Codegen.ElementInSet.txt │ │ ├── Assembly.Codegen.EnumCtor.txt │ │ ├── Assembly.Codegen.EnumCtor2.txt │ │ ├── Assembly.Codegen.Event.txt │ │ ├── Assembly.Codegen.Event2.txt │ │ ├── Assembly.Codegen.FailedThen.txt │ │ ├── Assembly.Codegen.ForEach.txt │ │ ├── Assembly.Codegen.GlobalVariable.txt │ │ ├── Assembly.Codegen.HelloWorld.txt │ │ ├── Assembly.Codegen.IfNotNull.txt │ │ ├── Assembly.Codegen.LetIn.txt │ │ ├── Assembly.Codegen.ListProcessing.txt │ │ ├── Assembly.Codegen.MapProcessing.txt │ │ ├── Assembly.Codegen.MethodClosure.txt │ │ ├── Assembly.Codegen.NamedLambda.txt │ │ ├── Assembly.Codegen.NestedLambda.txt │ │ ├── Assembly.Codegen.NewCustomInterface.txt │ │ ├── Assembly.Codegen.NewCustomInterface2.txt │ │ ├── Assembly.Codegen.NewCustomInterface3.txt │ │ ├── Assembly.Codegen.NewEmptyInterface.txt │ │ ├── Assembly.Codegen.NewInterface.txt │ │ ├── Assembly.Codegen.NullableCast.txt │ │ ├── Assembly.Codegen.ObservableList.txt │ │ ├── Assembly.Codegen.OpAdd.txt │ │ ├── Assembly.Codegen.OpAnd.txt │ │ ├── Assembly.Codegen.OpCompare.txt │ │ ├── Assembly.Codegen.OpCompareIndexOf.txt │ │ ├── Assembly.Codegen.OpCompareReference.txt │ │ ├── Assembly.Codegen.OpCompareStruct1.txt │ │ ├── Assembly.Codegen.OpCompareStruct2.txt │ │ ├── Assembly.Codegen.OpCompareWithString.txt │ │ ├── Assembly.Codegen.OpDiv.txt │ │ ├── Assembly.Codegen.OpMod.txt │ │ ├── Assembly.Codegen.OpMul.txt │ │ ├── Assembly.Codegen.OpNegative.txt │ │ ├── Assembly.Codegen.OpNot.txt │ │ ├── Assembly.Codegen.OpOr.txt │ │ ├── Assembly.Codegen.OpPositive.txt │ │ ├── Assembly.Codegen.OpShl.txt │ │ ├── Assembly.Codegen.OpShr.txt │ │ ├── Assembly.Codegen.OpSub.txt │ │ ├── Assembly.Codegen.OpXor.txt │ │ ├── Assembly.Codegen.OrderedLambda.txt │ │ ├── Assembly.Codegen.Overloading.txt │ │ ├── Assembly.Codegen.Property.txt │ │ ├── Assembly.Codegen.RecursiveFunction.txt │ │ ├── Assembly.Codegen.StaticInit.txt │ │ ├── Assembly.Codegen.StaticMethod.txt │ │ ├── Assembly.Codegen.StructCtor.txt │ │ ├── Assembly.Codegen.StructCtor2.txt │ │ ├── Assembly.Codegen.TryCatch.txt │ │ ├── Assembly.Codegen.TryFinally.txt │ │ ├── Assembly.Codegen.TryFinally2.txt │ │ ├── Assembly.Codegen.TypeOf.txt │ │ ├── Assembly.Codegen.TypeTesting.txt │ │ ├── Assembly.Codegen.WorkflowAttributes.txt │ │ ├── Assembly.Codegen.WorkflowHints.txt │ │ ├── Assembly.Codegen.WorkflowMultiFiles.txt │ │ ├── Parsing.AnalyzerError.A0_WrongFormatStringSyntax.txt │ │ ├── Parsing.AnalyzerError.A0_WrongFormatStringSyntax2.txt │ │ ├── Parsing.AnalyzerError.A10_AnonymousLambdaToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_AnonymousLambdaToWrongFunctionType.txt │ │ ├── Parsing.AnalyzerError.A10_AssignToList.txt │ │ ├── Parsing.AnalyzerError.A10_AssignToVariable.txt │ │ ├── Parsing.AnalyzerError.A10_BaseToDerived.txt │ │ ├── Parsing.AnalyzerError.A10_ConstructorToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_FunctionLambdaToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_FunctionLambdaToWrongFunctionType.txt │ │ ├── Parsing.AnalyzerError.A10_FunctionMemberToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_NullableToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_NullableToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A10_NullableToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A10_NullableToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OfBaseToDerived.txt │ │ ├── Parsing.AnalyzerError.A10_OfNullableToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_OfNullableToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A10_OfNullableToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A10_OfNullableToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OfOrderedLambdaToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OfOrderedLambdaToWrongBody.txt │ │ ├── Parsing.AnalyzerError.A10_OfOrderedLambdaToWrongFunctionType.txt │ │ ├── Parsing.AnalyzerError.A10_OfRawPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_OfRawPtrToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A10_OfRawPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OfSharedPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_OfSharedPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OfSharedToRaw.txt │ │ ├── Parsing.AnalyzerError.A10_OfStructToToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_OfStructToToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A10_OfStructToToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A10_OfStructToToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OrderedLambdaToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_OrderedLambdaToWrongBody.txt │ │ ├── Parsing.AnalyzerError.A10_OrderedLambdaToWrongFunctionType.txt │ │ ├── Parsing.AnalyzerError.A10_PropertyMemberToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_RawPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_RawPtrToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A10_RawPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_SharedPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_SharedPtrToRaw.txt │ │ ├── Parsing.AnalyzerError.A10_SharedPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_StaticMethodReturnTypeNotCompatible.txt │ │ ├── Parsing.AnalyzerError.A10_StaticMethodReturnTypeNotCompatible2.txt │ │ ├── Parsing.AnalyzerError.A10_StructToToNullable.txt │ │ ├── Parsing.AnalyzerError.A10_StructToToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A10_StructToToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A10_StructToToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_WrongAttachExpression.txt │ │ ├── Parsing.AnalyzerError.A10_WrongAttachExpressionToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_WrongDetachExpression.txt │ │ ├── Parsing.AnalyzerError.A10_WrongDetachExpressionToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_WrongIfVariable.txt │ │ ├── Parsing.AnalyzerError.A10_WrongStateArgument.txt │ │ ├── Parsing.AnalyzerError.A10_WrongTypeOfExpressionToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_WrongTypeOfTypeToStruct.txt │ │ ├── Parsing.AnalyzerError.A10_WrongTypeTestingToStruct.txt │ │ ├── Parsing.AnalyzerError.A11_AsNullableToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A11_AsNullableToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A11_AsRawPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A11_AsRawPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A11_AsSharedPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A11_AsSharedPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A11_AsStructToToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A11_AsStructToToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A11_NullableToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A11_NullableToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A11_RawPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A11_RawPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A11_SharedPtrToNullable.txt │ │ ├── Parsing.AnalyzerError.A11_SharedPtrToStruct.txt │ │ ├── Parsing.AnalyzerError.A11_StructToToRawPtr.txt │ │ ├── Parsing.AnalyzerError.A11_StructToToSharedPtr.txt │ │ ├── Parsing.AnalyzerError.A12_StructToStruct.txt │ │ ├── Parsing.AnalyzerError.A13_IntegerLiteralOutOfRange.txt │ │ ├── Parsing.AnalyzerError.A14_FailedThenExpressionCannotMergeType.txt │ │ ├── Parsing.AnalyzerError.A14_IfExpressionCannotMergeType.txt │ │ ├── Parsing.AnalyzerError.A14_IncompatibleList.txt │ │ ├── Parsing.AnalyzerError.A14_IncompatibleMap.txt │ │ ├── Parsing.AnalyzerError.A14_IncompatibleSwitch.txt │ │ ├── Parsing.AnalyzerError.A14_RangeCannotMergeType.txt │ │ ├── Parsing.AnalyzerError.A14_SetTestingInWrongCollection.txt │ │ ├── Parsing.AnalyzerError.A15_RangeOfBoolean.txt │ │ ├── Parsing.AnalyzerError.A17_IndexNotEnumerableObject.txt │ │ ├── Parsing.AnalyzerError.A18_ForInNotEnumerableObject.txt │ │ ├── Parsing.AnalyzerError.A18_SetTestingInNotEnumerableObject.txt │ │ ├── Parsing.AnalyzerError.A19_CallStruct.txt │ │ ├── Parsing.AnalyzerError.A1_WrongSimpleObserveExpression.txt │ │ ├── Parsing.AnalyzerError.A20_CallWrongArgumentCount.txt │ │ ├── Parsing.AnalyzerError.A20_CallWrongArgumentCount2.txt │ │ ├── Parsing.AnalyzerError.A20_CallWrongArgumentCount3.txt │ │ ├── Parsing.AnalyzerError.A21_CallWrongArgument.txt │ │ ├── Parsing.AnalyzerError.A21_CallWrongArgument2.txt │ │ ├── Parsing.AnalyzerError.A21_CoroutineReturnTypeNotCompatible.txt │ │ ├── Parsing.AnalyzerError.A22_CannotPickOverloadedConstructor.txt │ │ ├── Parsing.AnalyzerError.A22_CannotPickOverloadedConstructor2.txt │ │ ├── Parsing.AnalyzerError.A22_CannotPickOverloadedFunctions.txt │ │ ├── Parsing.AnalyzerError.A23_ImplementStruct.txt │ │ ├── Parsing.AnalyzerError.A23_NewStruct.txt │ │ ├── Parsing.AnalyzerError.A24_CallRawConstructorToShared.txt │ │ ├── Parsing.AnalyzerError.A24_CallRawConstructorToSharedInterface.txt │ │ ├── Parsing.AnalyzerError.A24_CallSharedConstructorToRawInterface.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToArgument.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToCapturedVariable.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToCapturedVariable2.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToCapturedVariable3.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToCapturedVariable4.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToConstant.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToCoroutineResult.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToFunction.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToFunctionCall.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToLambdaArgument.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToOrderedLambdaArgument.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToReadonlyList.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToReadonlyProperty.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToSmcSwitchArgument.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToStructField.txt │ │ ├── Parsing.AnalyzerError.A25_AssignToThis.txt │ │ ├── Parsing.AnalyzerError.A26_CallEventOutsideOfInterface.txt │ │ ├── Parsing.AnalyzerError.A26_CallMethodOutsideOfInterface.txt │ │ ├── Parsing.AnalyzerError.A26_CallPropertyOutsideOfInterface.txt │ │ ├── Parsing.AnalyzerError.A27_CallBaseMethodInsideInterface.txt │ │ ├── Parsing.AnalyzerError.A27_CallEventInsideInterface.txt │ │ ├── Parsing.AnalyzerError.A27_CallMethodInsideInterface.txt │ │ ├── Parsing.AnalyzerError.A27_CallOuterBaseMethodInsideInterface.txt │ │ ├── Parsing.AnalyzerError.A27_CallOuterMethodInsideInterface.txt │ │ ├── Parsing.AnalyzerError.A27_CallPropertyInsideBaseConstructorCall.txt │ │ ├── Parsing.AnalyzerError.A27_CallPropertyInsideInterface.txt │ │ ├── Parsing.AnalyzerError.A28_FieldsInitializeUsingEachOther1.txt │ │ ├── Parsing.AnalyzerError.A28_FieldsInitializeUsingEachOther2.txt │ │ ├── Parsing.AnalyzerError.A28_FieldsInitializeUsingEachOther3.txt │ │ ├── Parsing.AnalyzerError.A28_FieldsInitializeUsingEachOther4.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInAnonymousLambda.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInAnonymousLambda2.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInClassField.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInClassStaticFunction.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInConstructor.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInGlobalFunction.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInGlobalVariable.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInInterfaceStaticFunction.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInNewExpressionField.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInOrderedLambda.txt │ │ ├── Parsing.AnalyzerError.A29_ThisInOrderedLambda2.txt │ │ ├── Parsing.AnalyzerError.A2_EmptyExtendedObserveEvent.txt │ │ ├── Parsing.AnalyzerError.A2_WrongSimpleObserveEvent.txt │ │ ├── Parsing.AnalyzerError.A31_ExpressionNotConstant.txt │ │ ├── Parsing.AnalyzerError.A31_ExpressionNotConstant2.txt │ │ ├── Parsing.AnalyzerError.A31_ExpressionNotConstant3.txt │ │ ├── Parsing.AnalyzerError.A31_ExpressionNotConstant4.txt │ │ ├── Parsing.AnalyzerError.A31_ExpressionNotConstant5.txt │ │ ├── Parsing.AnalyzerError.A32_MixinCastBetweenUnrelatedInterfaces.txt │ │ ├── Parsing.AnalyzerError.A33_StrongExpectedTypeCastToImplicitType.txt │ │ ├── Parsing.AnalyzerError.A33_WeakExpectedTypeCastToImplicitType.txt │ │ ├── Parsing.AnalyzerError.A3_ObserveNotInBind.txt │ │ ├── Parsing.AnalyzerError.A4_BindInBind.txt │ │ ├── Parsing.AnalyzerError.A5_ConstructorMixMapAndList.txt │ │ ├── Parsing.AnalyzerError.A5_ConstructorMixStructAndList.txt │ │ ├── Parsing.AnalyzerError.A5_ConstructorMixStructAndList2.txt │ │ ├── Parsing.AnalyzerError.A5_DuplicatedConstructorField.txt │ │ ├── Parsing.AnalyzerError.A7_EventIsNotExpression.txt │ │ ├── Parsing.AnalyzerError.A7_ScopeNameIsNotExpression.txt │ │ ├── Parsing.AnalyzerError.A7_ScopeNameIsNotExpression2.txt │ │ ├── Parsing.AnalyzerError.A8_ExpressionIsNotScopeName.txt │ │ ├── Parsing.AnalyzerError.A9_ConstructorCannotResolveType.txt │ │ ├── Parsing.AnalyzerError.A9_ExpressionCannotResolveType.txt │ │ ├── Parsing.AnalyzerError.A9_LetExpressionCannotResolveType.txt │ │ ├── Parsing.AnalyzerError.A9_NullCannotResolveType.txt │ │ ├── Parsing.AnalyzerError.A9_OrderedLambdaCannotResolveType.txt │ │ ├── Parsing.AnalyzerError.B0_VoidArgument.txt │ │ ├── Parsing.AnalyzerError.B0_VoidAutoProperty.txt │ │ ├── Parsing.AnalyzerError.B0_VoidEventArgument.txt │ │ ├── Parsing.AnalyzerError.B0_VoidMapElement.txt │ │ ├── Parsing.AnalyzerError.B0_VoidProperty.txt │ │ ├── Parsing.AnalyzerError.B0_VoidVariable.txt │ │ ├── Parsing.AnalyzerError.B1_InterfaceArgument.txt │ │ ├── Parsing.AnalyzerError.B1_InterfaceMapElement.txt │ │ ├── Parsing.AnalyzerError.B1_InterfaceVariable.txt │ │ ├── Parsing.AnalyzerError.B2_RawPointerToEnumerable.txt │ │ ├── Parsing.AnalyzerError.B2_RawPointerToMap.txt │ │ ├── Parsing.AnalyzerError.B2_RawPointerToString.txt │ │ ├── Parsing.AnalyzerError.B2_RawPointerToStruct.txt │ │ ├── Parsing.AnalyzerError.B2_RawPointerToVoid.txt │ │ ├── Parsing.AnalyzerError.B3_SharedPointerToEnumerable.txt │ │ ├── Parsing.AnalyzerError.B3_SharedPointerToMap.txt │ │ ├── Parsing.AnalyzerError.B3_SharedPointerToString.txt │ │ ├── Parsing.AnalyzerError.B3_SharedPointerToStruct.txt │ │ ├── Parsing.AnalyzerError.B3_SharedPointerToVoid.txt │ │ ├── Parsing.AnalyzerError.B4_NullableToClass.txt │ │ ├── Parsing.AnalyzerError.B4_NullableToEnumerable.txt │ │ ├── Parsing.AnalyzerError.B4_NullableToMap.txt │ │ ├── Parsing.AnalyzerError.B4_NullableToVoid.txt │ │ ├── Parsing.AnalyzerError.B5_ChildOfEnumerable.txt │ │ ├── Parsing.AnalyzerError.B5_ChildOfMap.txt │ │ ├── Parsing.AnalyzerError.B6_FunctionIsNotType.txt │ │ ├── Parsing.AnalyzerError.B6_PropertyIsNotType.txt │ │ ├── Parsing.AnalyzerError.B6_VariableIsNotType.txt │ │ ├── Parsing.AnalyzerError.B7_ClassNotForValue.txt │ │ ├── Parsing.AnalyzerError.C0_BreakNotInLoop.txt │ │ ├── Parsing.AnalyzerError.C10_CoOperatorNotExists.txt │ │ ├── Parsing.AnalyzerError.C10_CoOperatorNotExists2.txt │ │ ├── Parsing.AnalyzerError.C10_CoOperatorNotExists3.txt │ │ ├── Parsing.AnalyzerError.C10_CoOperatorNotExists4.txt │ │ ├── Parsing.AnalyzerError.C11_CoOperatorCannotResolveResultType.txt │ │ ├── Parsing.AnalyzerError.C11_CoOperatorCannotResolveResultType2.txt │ │ ├── Parsing.AnalyzerError.C11_CoOperatorCannotResolveResultType3.txt │ │ ├── Parsing.AnalyzerError.C12_CoProviderCreatorNotExists.txt │ │ ├── Parsing.AnalyzerError.C12_CoProviderCreatorNotExists2.txt │ │ ├── Parsing.AnalyzerError.C12_CoProviderCreatorNotExists3.txt │ │ ├── Parsing.AnalyzerError.C13_GotoLabelNotExists.txt │ │ ├── Parsing.AnalyzerError.C13_GotoLabelNotExists2.txt │ │ ├── Parsing.AnalyzerError.C14_TooManyGotoTargets.txt │ │ ├── Parsing.AnalyzerError.C15_StateSwitchNotInStateDecl.txt │ │ ├── Parsing.AnalyzerError.C16_GotoStateNotInStateDecl.txt │ │ ├── Parsing.AnalyzerError.C16_PushStateNotInStateDecl.txt │ │ ├── Parsing.AnalyzerError.C17_StateInputNotExists.txt │ │ ├── Parsing.AnalyzerError.C18_StateInputArgumentNotMatch.txt │ │ ├── Parsing.AnalyzerError.C19_StateNotExists.txt │ │ ├── Parsing.AnalyzerError.C1_ContinueNotInLoop.txt │ │ ├── Parsing.AnalyzerError.C20_StateArgumentNotMatch.txt │ │ ├── Parsing.AnalyzerError.C2_RethrowNotInCatch.txt │ │ ├── Parsing.AnalyzerError.C3_TryMissCatchAndFinally.txt │ │ ├── Parsing.AnalyzerError.C4_ReturnMissExpression.txt │ │ ├── Parsing.AnalyzerError.C5_DeleteNonRawPointer.txt │ │ ├── Parsing.AnalyzerError.C6_ReturnValueInConstructor.txt │ │ ├── Parsing.AnalyzerError.C6_ReturnValueInCoroutine.txt │ │ ├── Parsing.AnalyzerError.C6_ReturnValueInDestructor.txt │ │ ├── Parsing.AnalyzerError.C6_ReturnValueInStaticInit.txt │ │ ├── Parsing.AnalyzerError.C6_ReturnValueInVoidFunction.txt │ │ ├── Parsing.AnalyzerError.C7_CoPauseInCoProvider.txt │ │ ├── Parsing.AnalyzerError.C7_CoPauseInFunction.txt │ │ ├── Parsing.AnalyzerError.C7_CoPauseInLambdaInCoroutine.txt │ │ ├── Parsing.AnalyzerError.C7_CoPauseInPause.txt │ │ ├── Parsing.AnalyzerError.C8_CoOperatorInFunction.txt │ │ ├── Parsing.AnalyzerError.C8_CoOperatorInFunction2.txt │ │ ├── Parsing.AnalyzerError.C8_CoOperatorInLambdaInCoProvider.txt │ │ ├── Parsing.AnalyzerError.C8_CoOperatorInLambdaInCoProvider2.txt │ │ ├── Parsing.AnalyzerError.C8_CoProviderInCoroutine.txt │ │ ├── Parsing.AnalyzerError.C8_CoProviderInCoroutine2.txt │ │ ├── Parsing.AnalyzerError.C9_CoProviderNotExists.txt │ │ ├── Parsing.AnalyzerError.C9_CoProviderNotExists2.txt │ │ ├── Parsing.AnalyzerError.C9_CoProviderNotExists3.txt │ │ ├── Parsing.AnalyzerError.C9_CoProviderNotExists4.txt │ │ ├── Parsing.AnalyzerError.CPP1_InternalClassCycleInheritance.txt │ │ ├── Parsing.AnalyzerError.CPP2_NonCustomFileClassForceIntoCustomFile.txt │ │ ├── Parsing.AnalyzerError.D0_AnonymousFunction.txt │ │ ├── Parsing.AnalyzerError.D0_AnonymousInterfaceFunction.txt │ │ ├── Parsing.AnalyzerError.D0_ClassMethodNoBlock.txt │ │ ├── Parsing.AnalyzerError.D0_FunctionNoBlock.txt │ │ ├── Parsing.AnalyzerError.D0_InterfaceMethodHasBlock.txt │ │ ├── Parsing.AnalyzerError.D0_InterfaceStaticMethodNoBlock.txt │ │ ├── Parsing.AnalyzerError.D10_FlagValueNotExists.txt │ │ ├── Parsing.AnalyzerError.D11_DuplicatedEnumValue.txt │ │ ├── Parsing.AnalyzerError.D12_StructContainsClass.txt │ │ ├── Parsing.AnalyzerError.D12_StructContainsIDescriptable.txt │ │ ├── Parsing.AnalyzerError.D12_StructContainsInterface.txt │ │ ├── Parsing.AnalyzerError.D12_StructContainsObject.txt │ │ ├── Parsing.AnalyzerError.D13_StructRecursivelyIncludeItself.txt │ │ ├── Parsing.AnalyzerError.D13_StructRecursivelyIncludeItself2.txt │ │ ├── Parsing.AnalyzerError.D14_DuplicatedStructMember.txt │ │ ├── Parsing.AnalyzerError.D15_AttributeNotExists.txt │ │ ├── Parsing.AnalyzerError.D16_SmcNotInheritFromStateMachine.txt │ │ ├── Parsing.AnalyzerError.D17_SmcMissingDefaultState.txt │ │ ├── Parsing.AnalyzerError.D1_DuplicatedClass.txt │ │ ├── Parsing.AnalyzerError.D1_DuplicatedFunction.txt │ │ ├── Parsing.AnalyzerError.D1_DuplicatedNamespace.txt │ │ ├── Parsing.AnalyzerError.D1_DuplicatedVariable.txt │ │ ├── Parsing.AnalyzerError.D1_OverloadedFunction.txt │ │ ├── Parsing.AnalyzerError.D1_OverloadedNamespace.txt │ │ ├── Parsing.AnalyzerError.D1_OverloadedVariable.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedClass.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedFunctionArgument.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedLambdaFunctionArgument.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedLetVariable.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedState.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedStateInput.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedStateSwitchArgument.txt │ │ ├── Parsing.AnalyzerError.D2_DuplicatedVariable.txt │ │ ├── Parsing.AnalyzerError.D3_ImplementMissFunction.txt │ │ ├── Parsing.AnalyzerError.D4_ImplementUnexistsFunction.txt │ │ ├── Parsing.AnalyzerError.D6_ImplementDuplicateFunction.txt │ │ ├── Parsing.AnalyzerError.D7_ConstructorOutsideOfClasses.txt │ │ ├── Parsing.AnalyzerError.D7_DestructorOutsideOfClasses.txt │ │ ├── Parsing.AnalyzerError.D7_EventOutsideOfClasses.txt │ │ ├── Parsing.AnalyzerError.D7_PropertyOutsideOfClasses.txt │ │ ├── Parsing.AnalyzerError.D7_StaticInitInClass.txt │ │ ├── Parsing.AnalyzerError.D7_StaticInitInInterface.txt │ │ ├── Parsing.AnalyzerError.D8_ClassInNewInterface.txt │ │ ├── Parsing.AnalyzerError.D8_EventInNewInterface.txt │ │ ├── Parsing.AnalyzerError.D8_NamespaceInNewInterface.txt │ │ ├── Parsing.AnalyzerError.D8_PropertyInNewInterface.txt │ │ ├── Parsing.AnalyzerError.D9_EnumValue.txt │ │ ├── Parsing.AnalyzerError.D9_FlagValue.txt │ │ ├── Parsing.AnalyzerError.E0_NoWildCard.txt │ │ ├── Parsing.AnalyzerError.E0_TooManyWildCard.txt │ │ ├── Parsing.AnalyzerError.E0_WildCardInWrongPlace.txt │ │ ├── Parsing.AnalyzerError.F0_ExpressionTopQualifiedSymbolNotExists.txt │ │ ├── Parsing.AnalyzerError.F0_TypeTopQualifiedSymbolNotExists.txt │ │ ├── Parsing.AnalyzerError.F1_ExpressionChildSymbolNotExists.txt │ │ ├── Parsing.AnalyzerError.F1_ObservedEventNotExists.txt │ │ ├── Parsing.AnalyzerError.F1_ObservedEventNotExists2.txt │ │ ├── Parsing.AnalyzerError.F1_ObservedPropertyNotExists.txt │ │ ├── Parsing.AnalyzerError.F1_ObservedPropertyNotExists2.txt │ │ ├── Parsing.AnalyzerError.F1_StaticMethodNotExists.txt │ │ ├── Parsing.AnalyzerError.F1_TypeChildSymbolNotExists.txt │ │ ├── Parsing.AnalyzerError.F1_TypeMemberNotExists.txt │ │ ├── Parsing.AnalyzerError.F2_ExpressionReferenceNotExists.txt │ │ ├── Parsing.AnalyzerError.F2_ExpressionReferenceNotExists2.txt │ │ ├── Parsing.AnalyzerError.F2_ExpressionReferenceNotExists3.txt │ │ ├── Parsing.AnalyzerError.F2_ExpressionReferenceNotExists4.txt │ │ ├── Parsing.AnalyzerError.F2_TypeReferenceNotExists.txt │ │ ├── Parsing.AnalyzerError.F2_TypeReferenceNotExists2.txt │ │ ├── Parsing.AnalyzerError.F3_ExpressionReferenceToFunctionsByUsing.txt │ │ ├── Parsing.AnalyzerError.F3_ExpressionReferenceToFunctionsInLocalAndUsing.txt │ │ ├── Parsing.AnalyzerError.F3_ExpressionReferenceToFunctionsInNestedNamespaces.txt │ │ ├── Parsing.AnalyzerError.F3_ExpressionReferenceToVariablesInNestedBlocks.txt │ │ ├── Parsing.AnalyzerError.F3_TypeReferenceToFunctionsByUsing.txt │ │ ├── Parsing.AnalyzerError.F3_TypeReferenceToFunctionsInLocalAndUsing.txt │ │ ├── Parsing.AnalyzerError.F3_TypeReferenceToFunctionsInNestedNamespaces.txt │ │ ├── Parsing.AnalyzerError.F3_TypeReferenceToVariablesInNestedBlocks.txt │ │ ├── Parsing.AnalyzerError.G10_DuplicatedBaseClass1.txt │ │ ├── Parsing.AnalyzerError.G10_DuplicatedBaseClass2.txt │ │ ├── Parsing.AnalyzerError.G10_DuplicatedBaseClass3.txt │ │ ├── Parsing.AnalyzerError.G10_DuplicatedBaseClass4.txt │ │ ├── Parsing.AnalyzerError.G10_DuplicatedBaseInterface1.txt │ │ ├── Parsing.AnalyzerError.G10_DuplicatedBaseInterface2.txt │ │ ├── Parsing.AnalyzerError.G11_WrongBaseConstructorTypes.txt │ │ ├── Parsing.AnalyzerError.G12_DuplicatedBaseConstructorTypes.txt │ │ ├── Parsing.AnalyzerError.G13_DuplicatedDestructor.txt │ │ ├── Parsing.AnalyzerError.G13_InitializeAutoPropertyInInterface.txt │ │ ├── Parsing.AnalyzerError.G13_UnInitializedAutoPropertyInClass.txt │ │ ├── Parsing.AnalyzerError.G13_UnInitializedAutoPropertyInNewExpression.txt │ │ ├── Parsing.AnalyzerError.G1_NormalAutoPropertyInNewInterface.txt │ │ ├── Parsing.AnalyzerError.G1_StaticAutoPropertyInClass.txt │ │ ├── Parsing.AnalyzerError.G1_StaticAutoPropertyInInterface.txt │ │ ├── Parsing.AnalyzerError.G1_StaticAutoPropertyInNewInterface.txt │ │ ├── Parsing.AnalyzerError.G2_NamespaceInClass.txt │ │ ├── Parsing.AnalyzerError.G3_UnexistingPropertyEvent.txt │ │ ├── Parsing.AnalyzerError.G3_UnexistingPropertyGetter.txt │ │ ├── Parsing.AnalyzerError.G3_UnexistingPropertySetter.txt │ │ ├── Parsing.AnalyzerError.G4_TooManyPropertyEvent.txt │ │ ├── Parsing.AnalyzerError.G4_TooManyPropertyGetter.txt │ │ ├── Parsing.AnalyzerError.G4_TooManyPropertySetter.txt │ │ ├── Parsing.AnalyzerError.G5_PropertyGetterWrongArgumentType.txt │ │ ├── Parsing.AnalyzerError.G5_PropertyGetterWrongReturnType.txt │ │ ├── Parsing.AnalyzerError.G5_PropertySetterWrongArgumentType.txt │ │ ├── Parsing.AnalyzerError.G5_PropertySetterWrongReturnType.txt │ │ ├── Parsing.AnalyzerError.G6_WrongBaseConstructorType.txt │ │ ├── Parsing.AnalyzerError.G6_WrongBaseType.txt │ │ ├── Parsing.AnalyzerError.G6_WrongBaseTypeOfClass1.txt │ │ ├── Parsing.AnalyzerError.G6_WrongBaseTypeOfClass2.txt │ │ ├── Parsing.AnalyzerError.G6_WrongBaseTypeOfInterface1.txt │ │ ├── Parsing.AnalyzerError.G6_WrongBaseTypeOfInterface2.txt │ │ ├── Parsing.AnalyzerError.G6_WrongInterfaceBaseType.txt │ │ ├── Parsing.AnalyzerError.G6_WrongInterfaceBaseType2.txt │ │ ├── Parsing.AnalyzerError.G6_WrongObjectBaseType.txt │ │ ├── Parsing.AnalyzerError.G6_WrongObjectBaseType2.txt │ │ ├── Parsing.AnalyzerError.G8_OverrideAutoPropertyInClass.txt │ │ ├── Parsing.AnalyzerError.G8_OverrideAutoPropertyInInterface.txt │ │ ├── Parsing.AnalyzerError.G8_OverrideInInterface.txt │ │ ├── Parsing.AnalyzerError.G9_MissingFieldType.txt │ │ ├── Parsing.AnalyzerScope.ModuleA.txt │ │ ├── Parsing.AnalyzerScope.ModuleB.txt │ │ ├── Parsing.AnalyzerScope.ModuleC.txt │ │ ├── Parsing.Codegen.AnonymousLambda.txt │ │ ├── Parsing.Codegen.BindComplex.txt │ │ ├── Parsing.Codegen.BindCustomInterface.txt │ │ ├── Parsing.Codegen.BindCustomInterface2.txt │ │ ├── Parsing.Codegen.BindFormat.txt │ │ ├── Parsing.Codegen.BindLet.txt │ │ ├── Parsing.Codegen.BindNull.txt │ │ ├── Parsing.Codegen.BindSimple.txt │ │ ├── Parsing.Codegen.BindSimple2.txt │ │ ├── Parsing.Codegen.CallStaticMethod.txt │ │ ├── Parsing.Codegen.ClassCtor.txt │ │ ├── Parsing.Codegen.ClassDtor.txt │ │ ├── Parsing.Codegen.ClassField.txt │ │ ├── Parsing.Codegen.ClassMethod.txt │ │ ├── Parsing.Codegen.CoAsync.txt │ │ ├── Parsing.Codegen.CoAsync2.txt │ │ ├── Parsing.Codegen.CoEnum.txt │ │ ├── Parsing.Codegen.CoEnum2.txt │ │ ├── Parsing.Codegen.CoRawCoroutine.txt │ │ ├── Parsing.Codegen.CoRawCoroutine2.txt │ │ ├── Parsing.Codegen.CoRawCoroutine3.txt │ │ ├── Parsing.Codegen.CoRawCoroutine4.txt │ │ ├── Parsing.Codegen.CoRawCoroutine5.txt │ │ ├── Parsing.Codegen.CoRawCoroutine6.txt │ │ ├── Parsing.Codegen.CoRawCoroutine7.txt │ │ ├── Parsing.Codegen.CoSmcCalculator.txt │ │ ├── Parsing.Codegen.CoSmcGoto.txt │ │ ├── Parsing.Codegen.CoSmcPush.txt │ │ ├── Parsing.Codegen.CoSmcSwitchD1.txt │ │ ├── Parsing.Codegen.CoSmcSwitchD2.txt │ │ ├── Parsing.Codegen.CoSmcSwitchI1.txt │ │ ├── Parsing.Codegen.CoSmcSwitchI2.txt │ │ ├── Parsing.Codegen.CoSmcSwitchIR1.txt │ │ ├── Parsing.Codegen.CoSmcSwitchIR2.txt │ │ ├── Parsing.Codegen.CoSmcSwitchP1.txt │ │ ├── Parsing.Codegen.CoSmcSwitchP2.txt │ │ ├── Parsing.Codegen.CoSmcSwitchPR1.txt │ │ ├── Parsing.Codegen.CoSmcSwitchPR2.txt │ │ ├── Parsing.Codegen.CoSmcTryCatch1.txt │ │ ├── Parsing.Codegen.CoSmcTryCatch2.txt │ │ ├── Parsing.Codegen.ControlFlow.txt │ │ ├── Parsing.Codegen.Delete.txt │ │ ├── Parsing.Codegen.ElementInSet.txt │ │ ├── Parsing.Codegen.EnumCtor.txt │ │ ├── Parsing.Codegen.EnumCtor2.txt │ │ ├── Parsing.Codegen.Event.txt │ │ ├── Parsing.Codegen.Event2.txt │ │ ├── Parsing.Codegen.FailedThen.txt │ │ ├── Parsing.Codegen.ForEach.txt │ │ ├── Parsing.Codegen.GlobalVariable.txt │ │ ├── Parsing.Codegen.HelloWorld.txt │ │ ├── Parsing.Codegen.IfNotNull.txt │ │ ├── Parsing.Codegen.LetIn.txt │ │ ├── Parsing.Codegen.ListProcessing.txt │ │ ├── Parsing.Codegen.MapProcessing.txt │ │ ├── Parsing.Codegen.MethodClosure.txt │ │ ├── Parsing.Codegen.NamedLambda.txt │ │ ├── Parsing.Codegen.NestedLambda.txt │ │ ├── Parsing.Codegen.NewCustomInterface.txt │ │ ├── Parsing.Codegen.NewCustomInterface2.txt │ │ ├── Parsing.Codegen.NewCustomInterface3.txt │ │ ├── Parsing.Codegen.NewEmptyInterface.txt │ │ ├── Parsing.Codegen.NewInterface.txt │ │ ├── Parsing.Codegen.NullableCast.txt │ │ ├── Parsing.Codegen.ObservableList.txt │ │ ├── Parsing.Codegen.OpAdd.txt │ │ ├── Parsing.Codegen.OpAnd.txt │ │ ├── Parsing.Codegen.OpCompare.txt │ │ ├── Parsing.Codegen.OpCompareIndexOf.txt │ │ ├── Parsing.Codegen.OpCompareReference.txt │ │ ├── Parsing.Codegen.OpCompareStruct1.txt │ │ ├── Parsing.Codegen.OpCompareStruct2.txt │ │ ├── Parsing.Codegen.OpCompareWithString.txt │ │ ├── Parsing.Codegen.OpDiv.txt │ │ ├── Parsing.Codegen.OpMod.txt │ │ ├── Parsing.Codegen.OpMul.txt │ │ ├── Parsing.Codegen.OpNegative.txt │ │ ├── Parsing.Codegen.OpNot.txt │ │ ├── Parsing.Codegen.OpOr.txt │ │ ├── Parsing.Codegen.OpPositive.txt │ │ ├── Parsing.Codegen.OpShl.txt │ │ ├── Parsing.Codegen.OpShr.txt │ │ ├── Parsing.Codegen.OpSub.txt │ │ ├── Parsing.Codegen.OpXor.txt │ │ ├── Parsing.Codegen.OrderedLambda.txt │ │ ├── Parsing.Codegen.Overloading.txt │ │ ├── Parsing.Codegen.Property.txt │ │ ├── Parsing.Codegen.RecursiveFunction.txt │ │ ├── Parsing.Codegen.StaticInit.txt │ │ ├── Parsing.Codegen.StaticMethod.txt │ │ ├── Parsing.Codegen.StructCtor.txt │ │ ├── Parsing.Codegen.StructCtor2.txt │ │ ├── Parsing.Codegen.TryCatch.txt │ │ ├── Parsing.Codegen.TryFinally.txt │ │ ├── Parsing.Codegen.TryFinally2.txt │ │ ├── Parsing.Codegen.TypeOf.txt │ │ ├── Parsing.Codegen.TypeTesting.txt │ │ ├── Parsing.Codegen.WorkflowAttributes.txt │ │ ├── Parsing.Codegen.WorkflowHints.txt │ │ ├── Parsing.Codegen.WorkflowMultiFiles.txt │ │ ├── Parsing.Declaration.Class.txt │ │ ├── Parsing.Declaration.Coroutine.txt │ │ ├── Parsing.Declaration.Enum.txt │ │ ├── Parsing.Declaration.Function.txt │ │ ├── Parsing.Declaration.HelloWorld.txt │ │ ├── Parsing.Declaration.Interface.txt │ │ ├── Parsing.Declaration.Namespace.txt │ │ ├── Parsing.Declaration.NestedNamespace.txt │ │ ├── Parsing.Declaration.StateMachine.txt │ │ ├── Parsing.Declaration.Struct.txt │ │ ├── Parsing.Declaration.Variable.txt │ │ ├── Parsing.Expression.Attach.txt │ │ ├── Parsing.Expression.BinaryAscending.txt │ │ ├── Parsing.Expression.BinaryDescending.txt │ │ ├── Parsing.Expression.Bind.txt │ │ ├── Parsing.Expression.Bracket.txt │ │ ├── Parsing.Expression.Call.txt │ │ ├── Parsing.Expression.CastStrong.txt │ │ ├── Parsing.Expression.CastWeak.txt │ │ ├── Parsing.Expression.Child.txt │ │ ├── Parsing.Expression.Coroutine.txt │ │ ├── Parsing.Expression.Detach.txt │ │ ├── Parsing.Expression.EmptyCollection.txt │ │ ├── Parsing.Expression.ExtendedObserve1.txt │ │ ├── Parsing.Expression.ExtendedObserve2.txt │ │ ├── Parsing.Expression.False.txt │ │ ├── Parsing.Expression.Float.txt │ │ ├── Parsing.Expression.FormatString.txt │ │ ├── Parsing.Expression.Function.txt │ │ ├── Parsing.Expression.HelloWorld.txt │ │ ├── Parsing.Expression.Index.txt │ │ ├── Parsing.Expression.Infer.txt │ │ ├── Parsing.Expression.Integer.txt │ │ ├── Parsing.Expression.IsNotNull.txt │ │ ├── Parsing.Expression.IsNotType.txt │ │ ├── Parsing.Expression.IsNull.txt │ │ ├── Parsing.Expression.IsType.txt │ │ ├── Parsing.Expression.Let.txt │ │ ├── Parsing.Expression.List.txt │ │ ├── Parsing.Expression.Map.txt │ │ ├── Parsing.Expression.Member.txt │ │ ├── Parsing.Expression.Negative.txt │ │ ├── Parsing.Expression.New1.txt │ │ ├── Parsing.Expression.New2.txt │ │ ├── Parsing.Expression.Not.txt │ │ ├── Parsing.Expression.Null.txt │ │ ├── Parsing.Expression.OrderedLambda.txt │ │ ├── Parsing.Expression.OrderedName.txt │ │ ├── Parsing.Expression.Positive.txt │ │ ├── Parsing.Expression.Range1.txt │ │ ├── Parsing.Expression.Range2.txt │ │ ├── Parsing.Expression.Range3.txt │ │ ├── Parsing.Expression.Range4.txt │ │ ├── Parsing.Expression.Reference.txt │ │ ├── Parsing.Expression.SetIn.txt │ │ ├── Parsing.Expression.SetNotIn.txt │ │ ├── Parsing.Expression.SimpleObserve1.txt │ │ ├── Parsing.Expression.SimpleObserve2.txt │ │ ├── Parsing.Expression.String.txt │ │ ├── Parsing.Expression.True.txt │ │ ├── Parsing.Expression.TypeOfExpression.txt │ │ ├── Parsing.Expression.TypeOfType.txt │ │ ├── Parsing.Module.HelloWorld.txt │ │ ├── Parsing.Module.Useful.txt │ │ ├── Parsing.Statement.Break.txt │ │ ├── Parsing.Statement.Continue.txt │ │ ├── Parsing.Statement.Delete.txt │ │ ├── Parsing.Statement.Expression.txt │ │ ├── Parsing.Statement.ForEach.txt │ │ ├── Parsing.Statement.ForEachReversed.txt │ │ ├── Parsing.Statement.Goto.txt │ │ ├── Parsing.Statement.HelloWorld.txt │ │ ├── Parsing.Statement.If.txt │ │ ├── Parsing.Statement.IfCast.txt │ │ ├── Parsing.Statement.Raise.txt │ │ ├── Parsing.Statement.Return.txt │ │ ├── Parsing.Statement.Switch.txt │ │ ├── Parsing.Statement.Try.txt │ │ ├── Parsing.Statement.Variable.txt │ │ └── Parsing.Statement.While.txt ├── Linux │ ├── CompilerTest_GenerateMetadata │ │ ├── makefile │ │ └── vmake │ ├── CompilerTest_LoadAndCompile │ │ ├── makefile │ │ └── vmake │ ├── CppTest │ │ ├── makefile │ │ └── vmake │ ├── CppTest_Metaonly │ │ ├── makefile │ │ └── vmake │ ├── CppTest_Reflection │ │ ├── makefile │ │ └── vmake │ ├── LibraryTest │ │ ├── makefile │ │ └── vmake │ └── RuntimeTest │ │ ├── makefile │ │ └── vmake ├── Resources │ ├── AnalyzerError │ │ ├── A0_WrongFormatStringSyntax.txt │ │ ├── A0_WrongFormatStringSyntax2.txt │ │ ├── A10_AnonymousLambdaToStruct.txt │ │ ├── A10_AnonymousLambdaToWrongFunctionType.txt │ │ ├── A10_AssignToList.txt │ │ ├── A10_AssignToVariable.txt │ │ ├── A10_BaseToDerived.txt │ │ ├── A10_ConstructorToStruct.txt │ │ ├── A10_FunctionLambdaToStruct.txt │ │ ├── A10_FunctionLambdaToWrongFunctionType.txt │ │ ├── A10_FunctionMemberToNullable.txt │ │ ├── A10_NullableToNullable.txt │ │ ├── A10_NullableToRawPtr.txt │ │ ├── A10_NullableToSharedPtr.txt │ │ ├── A10_NullableToStruct.txt │ │ ├── A10_OfBaseToDerived.txt │ │ ├── A10_OfNullableToNullable.txt │ │ ├── A10_OfNullableToRawPtr.txt │ │ ├── A10_OfNullableToSharedPtr.txt │ │ ├── A10_OfNullableToStruct.txt │ │ ├── A10_OfOrderedLambdaToStruct.txt │ │ ├── A10_OfOrderedLambdaToWrongBody.txt │ │ ├── A10_OfOrderedLambdaToWrongFunctionType.txt │ │ ├── A10_OfRawPtrToNullable.txt │ │ ├── A10_OfRawPtrToSharedPtr.txt │ │ ├── A10_OfRawPtrToStruct.txt │ │ ├── A10_OfSharedPtrToNullable.txt │ │ ├── A10_OfSharedPtrToStruct.txt │ │ ├── A10_OfSharedToRaw.txt │ │ ├── A10_OfStructToToNullable.txt │ │ ├── A10_OfStructToToRawPtr.txt │ │ ├── A10_OfStructToToSharedPtr.txt │ │ ├── A10_OfStructToToStruct.txt │ │ ├── A10_OrderedLambdaToStruct.txt │ │ ├── A10_OrderedLambdaToWrongBody.txt │ │ ├── A10_OrderedLambdaToWrongFunctionType.txt │ │ ├── A10_PropertyMemberToNullable.txt │ │ ├── A10_RawPtrToNullable.txt │ │ ├── A10_RawPtrToSharedPtr.txt │ │ ├── A10_RawPtrToStruct.txt │ │ ├── A10_SharedPtrToNullable.txt │ │ ├── A10_SharedPtrToRaw.txt │ │ ├── A10_SharedPtrToStruct.txt │ │ ├── A10_StaticMethodReturnTypeNotCompatible.txt │ │ ├── A10_StaticMethodReturnTypeNotCompatible2.txt │ │ ├── A10_StructToToNullable.txt │ │ ├── A10_StructToToRawPtr.txt │ │ ├── A10_StructToToSharedPtr.txt │ │ ├── A10_StructToToStruct.txt │ │ ├── A10_WrongAttachExpression.txt │ │ ├── A10_WrongAttachExpressionToStruct.txt │ │ ├── A10_WrongDetachExpression.txt │ │ ├── A10_WrongDetachExpressionToStruct.txt │ │ ├── A10_WrongIfVariable.txt │ │ ├── A10_WrongStateArgument.txt │ │ ├── A10_WrongTypeOfExpressionToStruct.txt │ │ ├── A10_WrongTypeOfTypeToStruct.txt │ │ ├── A10_WrongTypeTestingToStruct.txt │ │ ├── A11_AsNullableToRawPtr.txt │ │ ├── A11_AsNullableToSharedPtr.txt │ │ ├── A11_AsRawPtrToNullable.txt │ │ ├── A11_AsRawPtrToStruct.txt │ │ ├── A11_AsSharedPtrToNullable.txt │ │ ├── A11_AsSharedPtrToStruct.txt │ │ ├── A11_AsStructToToRawPtr.txt │ │ ├── A11_AsStructToToSharedPtr.txt │ │ ├── A11_NullableToRawPtr.txt │ │ ├── A11_NullableToSharedPtr.txt │ │ ├── A11_RawPtrToNullable.txt │ │ ├── A11_RawPtrToStruct.txt │ │ ├── A11_SharedPtrToNullable.txt │ │ ├── A11_SharedPtrToStruct.txt │ │ ├── A11_StructToToRawPtr.txt │ │ ├── A11_StructToToSharedPtr.txt │ │ ├── A12_StructToStruct.txt │ │ ├── A13_IntegerLiteralOutOfRange.txt │ │ ├── A14_FailedThenExpressionCannotMergeType.txt │ │ ├── A14_IfExpressionCannotMergeType.txt │ │ ├── A14_IncompatibleList.txt │ │ ├── A14_IncompatibleMap.txt │ │ ├── A14_IncompatibleSwitch.txt │ │ ├── A14_RangeCannotMergeType.txt │ │ ├── A14_SetTestingInWrongCollection.txt │ │ ├── A15_RangeOfBoolean.txt │ │ ├── A17_IndexNotEnumerableObject.txt │ │ ├── A18_ForInNotEnumerableObject.txt │ │ ├── A18_SetTestingInNotEnumerableObject.txt │ │ ├── A19_CallStruct.txt │ │ ├── A1_WrongSimpleObserveExpression.txt │ │ ├── A20_CallWrongArgumentCount.txt │ │ ├── A20_CallWrongArgumentCount2.txt │ │ ├── A20_CallWrongArgumentCount3.txt │ │ ├── A21_CallWrongArgument.txt │ │ ├── A21_CallWrongArgument2.txt │ │ ├── A21_CoroutineReturnTypeNotCompatible.txt │ │ ├── A22_CannotPickOverloadedConstructor.txt │ │ ├── A22_CannotPickOverloadedConstructor2.txt │ │ ├── A22_CannotPickOverloadedFunctions.txt │ │ ├── A23_ImplementStruct.txt │ │ ├── A23_NewStruct.txt │ │ ├── A24_CallRawConstructorToShared.txt │ │ ├── A24_CallRawConstructorToSharedInterface.txt │ │ ├── A24_CallSharedConstructorToRawInterface.txt │ │ ├── A25_AssignToArgument.txt │ │ ├── A25_AssignToCapturedVariable.txt │ │ ├── A25_AssignToCapturedVariable2.txt │ │ ├── A25_AssignToCapturedVariable3.txt │ │ ├── A25_AssignToCapturedVariable4.txt │ │ ├── A25_AssignToConstant.txt │ │ ├── A25_AssignToCoroutineResult.txt │ │ ├── A25_AssignToFunction.txt │ │ ├── A25_AssignToFunctionCall.txt │ │ ├── A25_AssignToLambdaArgument.txt │ │ ├── A25_AssignToOrderedLambdaArgument.txt │ │ ├── A25_AssignToReadonlyList.txt │ │ ├── A25_AssignToReadonlyProperty.txt │ │ ├── A25_AssignToSmcSwitchArgument.txt │ │ ├── A25_AssignToStructField.txt │ │ ├── A25_AssignToThis.txt │ │ ├── A26_CallEventOutsideOfInterface.txt │ │ ├── A26_CallMethodOutsideOfInterface.txt │ │ ├── A26_CallPropertyOutsideOfInterface.txt │ │ ├── A27_CallBaseMethodInsideInterface.txt │ │ ├── A27_CallEventInsideInterface.txt │ │ ├── A27_CallMethodInsideInterface.txt │ │ ├── A27_CallOuterBaseMethodInsideInterface.txt │ │ ├── A27_CallOuterMethodInsideInterface.txt │ │ ├── A27_CallPropertyInsideBaseConstructorCall.txt │ │ ├── A27_CallPropertyInsideInterface.txt │ │ ├── A28_FieldsInitializeUsingEachOther1.txt │ │ ├── A28_FieldsInitializeUsingEachOther2.txt │ │ ├── A28_FieldsInitializeUsingEachOther3.txt │ │ ├── A28_FieldsInitializeUsingEachOther4.txt │ │ ├── A29_ThisInAnonymousLambda.txt │ │ ├── A29_ThisInAnonymousLambda2.txt │ │ ├── A29_ThisInClassField.txt │ │ ├── A29_ThisInClassStaticFunction.txt │ │ ├── A29_ThisInConstructor.txt │ │ ├── A29_ThisInGlobalFunction.txt │ │ ├── A29_ThisInGlobalVariable.txt │ │ ├── A29_ThisInInterfaceStaticFunction.txt │ │ ├── A29_ThisInNewExpressionField.txt │ │ ├── A29_ThisInOrderedLambda.txt │ │ ├── A29_ThisInOrderedLambda2.txt │ │ ├── A2_EmptyExtendedObserveEvent.txt │ │ ├── A2_WrongSimpleObserveEvent.txt │ │ ├── A31_ExpressionNotConstant.txt │ │ ├── A31_ExpressionNotConstant2.txt │ │ ├── A31_ExpressionNotConstant3.txt │ │ ├── A31_ExpressionNotConstant4.txt │ │ ├── A31_ExpressionNotConstant5.txt │ │ ├── A32_MixinCastBetweenUnrelatedInterfaces.txt │ │ ├── A33_StrongExpectedTypeCastToImplicitType.txt │ │ ├── A33_WeakExpectedTypeCastToImplicitType.txt │ │ ├── A3_ObserveNotInBind.txt │ │ ├── A4_BindInBind.txt │ │ ├── A5_ConstructorMixMapAndList.txt │ │ ├── A5_ConstructorMixStructAndList.txt │ │ ├── A5_ConstructorMixStructAndList2.txt │ │ ├── A5_DuplicatedConstructorField.txt │ │ ├── A7_EventIsNotExpression.txt │ │ ├── A7_ScopeNameIsNotExpression.txt │ │ ├── A7_ScopeNameIsNotExpression2.txt │ │ ├── A8_ExpressionIsNotScopeName.txt │ │ ├── A9_ConstructorCannotResolveType.txt │ │ ├── A9_ExpressionCannotResolveType.txt │ │ ├── A9_LetExpressionCannotResolveType.txt │ │ ├── A9_NullCannotResolveType.txt │ │ ├── A9_OrderedLambdaCannotResolveType.txt │ │ ├── B0_VoidArgument.txt │ │ ├── B0_VoidAutoProperty.txt │ │ ├── B0_VoidEventArgument.txt │ │ ├── B0_VoidMapElement.txt │ │ ├── B0_VoidProperty.txt │ │ ├── B0_VoidVariable.txt │ │ ├── B1_InterfaceArgument.txt │ │ ├── B1_InterfaceMapElement.txt │ │ ├── B1_InterfaceVariable.txt │ │ ├── B2_RawPointerToEnumerable.txt │ │ ├── B2_RawPointerToMap.txt │ │ ├── B2_RawPointerToString.txt │ │ ├── B2_RawPointerToStruct.txt │ │ ├── B2_RawPointerToVoid.txt │ │ ├── B3_SharedPointerToEnumerable.txt │ │ ├── B3_SharedPointerToMap.txt │ │ ├── B3_SharedPointerToString.txt │ │ ├── B3_SharedPointerToStruct.txt │ │ ├── B3_SharedPointerToVoid.txt │ │ ├── B4_NullableToClass.txt │ │ ├── B4_NullableToEnumerable.txt │ │ ├── B4_NullableToMap.txt │ │ ├── B4_NullableToVoid.txt │ │ ├── B5_ChildOfEnumerable.txt │ │ ├── B5_ChildOfMap.txt │ │ ├── B6_FunctionIsNotType.txt │ │ ├── B6_PropertyIsNotType.txt │ │ ├── B6_VariableIsNotType.txt │ │ ├── B7_ClassNotForValue.txt │ │ ├── C0_BreakNotInLoop.txt │ │ ├── C10_CoOperatorNotExists.txt │ │ ├── C10_CoOperatorNotExists2.txt │ │ ├── C10_CoOperatorNotExists3.txt │ │ ├── C10_CoOperatorNotExists4.txt │ │ ├── C11_CoOperatorCannotResolveResultType.txt │ │ ├── C11_CoOperatorCannotResolveResultType2.txt │ │ ├── C11_CoOperatorCannotResolveResultType3.txt │ │ ├── C12_CoProviderCreatorNotExists.txt │ │ ├── C12_CoProviderCreatorNotExists2.txt │ │ ├── C12_CoProviderCreatorNotExists3.txt │ │ ├── C13_GotoLabelNotExists.txt │ │ ├── C13_GotoLabelNotExists2.txt │ │ ├── C14_TooManyGotoTargets.txt │ │ ├── C15_StateSwitchNotInStateDecl.txt │ │ ├── C16_GotoStateNotInStateDecl.txt │ │ ├── C16_PushStateNotInStateDecl.txt │ │ ├── C17_StateInputNotExists.txt │ │ ├── C18_StateInputArgumentNotMatch.txt │ │ ├── C19_StateNotExists.txt │ │ ├── C1_ContinueNotInLoop.txt │ │ ├── C20_StateArgumentNotMatch.txt │ │ ├── C2_RethrowNotInCatch.txt │ │ ├── C3_TryMissCatchAndFinally.txt │ │ ├── C4_ReturnMissExpression.txt │ │ ├── C5_DeleteNonRawPointer.txt │ │ ├── C6_ReturnValueInConstructor.txt │ │ ├── C6_ReturnValueInCoroutine.txt │ │ ├── C6_ReturnValueInDestructor.txt │ │ ├── C6_ReturnValueInStaticInit.txt │ │ ├── C6_ReturnValueInVoidFunction.txt │ │ ├── C7_CoPauseInCoProvider.txt │ │ ├── C7_CoPauseInFunction.txt │ │ ├── C7_CoPauseInLambdaInCoroutine.txt │ │ ├── C7_CoPauseInPause.txt │ │ ├── C8_CoOperatorInFunction.txt │ │ ├── C8_CoOperatorInFunction2.txt │ │ ├── C8_CoOperatorInLambdaInCoProvider.txt │ │ ├── C8_CoOperatorInLambdaInCoProvider2.txt │ │ ├── C8_CoProviderInCoroutine.txt │ │ ├── C8_CoProviderInCoroutine2.txt │ │ ├── C9_CoProviderNotExists.txt │ │ ├── C9_CoProviderNotExists2.txt │ │ ├── C9_CoProviderNotExists3.txt │ │ ├── C9_CoProviderNotExists4.txt │ │ ├── CPP1_InternalClassCycleInheritance.txt │ │ ├── CPP2_NonCustomFileClassForceIntoCustomFile.txt │ │ ├── D0_AnonymousFunction.txt │ │ ├── D0_AnonymousInterfaceFunction.txt │ │ ├── D0_ClassMethodNoBlock.txt │ │ ├── D0_FunctionNoBlock.txt │ │ ├── D0_InterfaceMethodHasBlock.txt │ │ ├── D0_InterfaceStaticMethodNoBlock.txt │ │ ├── D10_FlagValueNotExists.txt │ │ ├── D11_DuplicatedEnumValue.txt │ │ ├── D12_StructContainsClass.txt │ │ ├── D12_StructContainsIDescriptable.txt │ │ ├── D12_StructContainsInterface.txt │ │ ├── D12_StructContainsObject.txt │ │ ├── D13_StructRecursivelyIncludeItself.txt │ │ ├── D13_StructRecursivelyIncludeItself2.txt │ │ ├── D14_DuplicatedStructMember.txt │ │ ├── D15_AttributeNotExists.txt │ │ ├── D16_SmcNotInheritFromStateMachine.txt │ │ ├── D17_SmcMissingDefaultState.txt │ │ ├── D1_DuplicatedClass.txt │ │ ├── D1_DuplicatedFunction.txt │ │ ├── D1_DuplicatedNamespace.txt │ │ ├── D1_DuplicatedVariable.txt │ │ ├── D1_OverloadedFunction.txt │ │ ├── D1_OverloadedNamespace.txt │ │ ├── D1_OverloadedVariable.txt │ │ ├── D2_DuplicatedClass.txt │ │ ├── D2_DuplicatedFunctionArgument.txt │ │ ├── D2_DuplicatedLambdaFunctionArgument.txt │ │ ├── D2_DuplicatedLetVariable.txt │ │ ├── D2_DuplicatedState.txt │ │ ├── D2_DuplicatedStateInput.txt │ │ ├── D2_DuplicatedStateSwitchArgument.txt │ │ ├── D2_DuplicatedVariable.txt │ │ ├── D3_ImplementMissFunction.txt │ │ ├── D4_ImplementUnexistsFunction.txt │ │ ├── D6_ImplementDuplicateFunction.txt │ │ ├── D7_ConstructorOutsideOfClasses.txt │ │ ├── D7_DestructorOutsideOfClasses.txt │ │ ├── D7_EventOutsideOfClasses.txt │ │ ├── D7_PropertyOutsideOfClasses.txt │ │ ├── D7_StaticInitInClass.txt │ │ ├── D7_StaticInitInInterface.txt │ │ ├── D8_ClassInNewInterface.txt │ │ ├── D8_EventInNewInterface.txt │ │ ├── D8_NamespaceInNewInterface.txt │ │ ├── D8_PropertyInNewInterface.txt │ │ ├── D9_EnumValue.txt │ │ ├── D9_FlagValue.txt │ │ ├── E0_NoWildCard.txt │ │ ├── E0_TooManyWildCard.txt │ │ ├── E0_WildCardInWrongPlace.txt │ │ ├── F0_ExpressionTopQualifiedSymbolNotExists.txt │ │ ├── F0_TypeTopQualifiedSymbolNotExists.txt │ │ ├── F1_ExpressionChildSymbolNotExists.txt │ │ ├── F1_ObservedEventNotExists.txt │ │ ├── F1_ObservedEventNotExists2.txt │ │ ├── F1_ObservedPropertyNotExists.txt │ │ ├── F1_ObservedPropertyNotExists2.txt │ │ ├── F1_StaticMethodNotExists.txt │ │ ├── F1_TypeChildSymbolNotExists.txt │ │ ├── F1_TypeMemberNotExists.txt │ │ ├── F2_ExpressionReferenceNotExists.txt │ │ ├── F2_ExpressionReferenceNotExists2.txt │ │ ├── F2_ExpressionReferenceNotExists3.txt │ │ ├── F2_ExpressionReferenceNotExists4.txt │ │ ├── F2_TypeReferenceNotExists.txt │ │ ├── F2_TypeReferenceNotExists2.txt │ │ ├── F3_ExpressionReferenceToFunctionsByUsing.txt │ │ ├── F3_ExpressionReferenceToFunctionsInLocalAndUsing.txt │ │ ├── F3_ExpressionReferenceToFunctionsInNestedNamespaces.txt │ │ ├── F3_ExpressionReferenceToVariablesInNestedBlocks.txt │ │ ├── F3_TypeReferenceToFunctionsByUsing.txt │ │ ├── F3_TypeReferenceToFunctionsInLocalAndUsing.txt │ │ ├── F3_TypeReferenceToFunctionsInNestedNamespaces.txt │ │ ├── F3_TypeReferenceToVariablesInNestedBlocks.txt │ │ ├── G10_DuplicatedBaseClass1.txt │ │ ├── G10_DuplicatedBaseClass2.txt │ │ ├── G10_DuplicatedBaseClass3.txt │ │ ├── G10_DuplicatedBaseClass4.txt │ │ ├── G10_DuplicatedBaseInterface1.txt │ │ ├── G10_DuplicatedBaseInterface2.txt │ │ ├── G11_WrongBaseConstructorTypes.txt │ │ ├── G12_DuplicatedBaseConstructorTypes.txt │ │ ├── G13_DuplicatedDestructor.txt │ │ ├── G13_InitializeAutoPropertyInInterface.txt │ │ ├── G13_UnInitializedAutoPropertyInClass.txt │ │ ├── G13_UnInitializedAutoPropertyInNewExpression.txt │ │ ├── G1_NormalAutoPropertyInNewInterface.txt │ │ ├── G1_StaticAutoPropertyInClass.txt │ │ ├── G1_StaticAutoPropertyInInterface.txt │ │ ├── G1_StaticAutoPropertyInNewInterface.txt │ │ ├── G2_NamespaceInClass.txt │ │ ├── G3_UnexistingPropertyEvent.txt │ │ ├── G3_UnexistingPropertyGetter.txt │ │ ├── G3_UnexistingPropertySetter.txt │ │ ├── G4_TooManyPropertyEvent.txt │ │ ├── G4_TooManyPropertyGetter.txt │ │ ├── G4_TooManyPropertySetter.txt │ │ ├── G5_PropertyGetterWrongArgumentType.txt │ │ ├── G5_PropertyGetterWrongReturnType.txt │ │ ├── G5_PropertySetterWrongArgumentType.txt │ │ ├── G5_PropertySetterWrongReturnType.txt │ │ ├── G6_WrongBaseConstructorType.txt │ │ ├── G6_WrongBaseType.txt │ │ ├── G6_WrongBaseTypeOfClass1.txt │ │ ├── G6_WrongBaseTypeOfClass2.txt │ │ ├── G6_WrongBaseTypeOfInterface1.txt │ │ ├── G6_WrongBaseTypeOfInterface2.txt │ │ ├── G6_WrongInterfaceBaseType.txt │ │ ├── G6_WrongInterfaceBaseType2.txt │ │ ├── G6_WrongObjectBaseType.txt │ │ ├── G6_WrongObjectBaseType2.txt │ │ ├── G8_OverrideAutoPropertyInClass.txt │ │ ├── G8_OverrideAutoPropertyInInterface.txt │ │ ├── G8_OverrideInInterface.txt │ │ └── G9_MissingFieldType.txt │ ├── AnalyzerScope │ │ ├── ModuleA.txt │ │ ├── ModuleB.txt │ │ └── ModuleC.txt │ ├── Baseline │ │ ├── Reflection32.txt │ │ └── Reflection64.txt │ ├── Codegen │ │ ├── AnonymousLambda.txt │ │ ├── BindComplex.txt │ │ ├── BindCustomInterface.txt │ │ ├── BindCustomInterface2.txt │ │ ├── BindFormat.txt │ │ ├── BindLet.txt │ │ ├── BindNull.txt │ │ ├── BindSimple.txt │ │ ├── BindSimple2.txt │ │ ├── CallStaticMethod.txt │ │ ├── ClassCtor.txt │ │ ├── ClassDtor.txt │ │ ├── ClassField.txt │ │ ├── ClassMethod.txt │ │ ├── CoAsync.txt │ │ ├── CoAsync2.txt │ │ ├── CoEnum.txt │ │ ├── CoEnum2.txt │ │ ├── CoRawCoroutine.txt │ │ ├── CoRawCoroutine2.txt │ │ ├── CoRawCoroutine3.txt │ │ ├── CoRawCoroutine4.txt │ │ ├── CoRawCoroutine5.txt │ │ ├── CoRawCoroutine6.txt │ │ ├── CoRawCoroutine7.txt │ │ ├── CoSmcCalculator.txt │ │ ├── CoSmcGoto.txt │ │ ├── CoSmcPush.txt │ │ ├── CoSmcSwitchD1.txt │ │ ├── CoSmcSwitchD2.txt │ │ ├── CoSmcSwitchI1.txt │ │ ├── CoSmcSwitchI2.txt │ │ ├── CoSmcSwitchIR1.txt │ │ ├── CoSmcSwitchIR2.txt │ │ ├── CoSmcSwitchP1.txt │ │ ├── CoSmcSwitchP2.txt │ │ ├── CoSmcSwitchPR1.txt │ │ ├── CoSmcSwitchPR2.txt │ │ ├── CoSmcTryCatch1.txt │ │ ├── CoSmcTryCatch2.txt │ │ ├── ControlFlow.txt │ │ ├── Delete.txt │ │ ├── ElementInSet.txt │ │ ├── EnumCtor.txt │ │ ├── EnumCtor2.txt │ │ ├── Event.txt │ │ ├── Event2.txt │ │ ├── FailedThen.txt │ │ ├── ForEach.txt │ │ ├── GlobalVariable.txt │ │ ├── HelloWorld.txt │ │ ├── IfNotNull.txt │ │ ├── LetIn.txt │ │ ├── ListProcessing.txt │ │ ├── MapProcessing.txt │ │ ├── MethodClosure.txt │ │ ├── NamedLambda.txt │ │ ├── NestedLambda.txt │ │ ├── NewCustomInterface.txt │ │ ├── NewCustomInterface2.txt │ │ ├── NewCustomInterface3.txt │ │ ├── NewEmptyInterface.txt │ │ ├── NewInterface.txt │ │ ├── NullableCast.txt │ │ ├── ObservableList.txt │ │ ├── OpAdd.txt │ │ ├── OpAnd.txt │ │ ├── OpCompare.txt │ │ ├── OpCompareIndexOf.txt │ │ ├── OpCompareReference.txt │ │ ├── OpCompareStruct1.txt │ │ ├── OpCompareStruct2.txt │ │ ├── OpCompareWithString.txt │ │ ├── OpDiv.txt │ │ ├── OpMod.txt │ │ ├── OpMul.txt │ │ ├── OpNegative.txt │ │ ├── OpNot.txt │ │ ├── OpOr.txt │ │ ├── OpPositive.txt │ │ ├── OpShl.txt │ │ ├── OpShr.txt │ │ ├── OpSub.txt │ │ ├── OpXor.txt │ │ ├── OrderedLambda.txt │ │ ├── Overloading.txt │ │ ├── Property.txt │ │ ├── RecursiveFunction.txt │ │ ├── StaticInit.txt │ │ ├── StaticMethod.txt │ │ ├── StructCtor.txt │ │ ├── StructCtor2.txt │ │ ├── TryCatch.txt │ │ ├── TryFinally.txt │ │ ├── TryFinally2.txt │ │ ├── TypeOf.txt │ │ ├── TypeTesting.txt │ │ ├── WorkflowAttributes.txt │ │ ├── WorkflowHints.txt │ │ └── WorkflowMultiFiles.txt │ ├── Debugger │ │ ├── Assignment.txt │ │ ├── Event.txt │ │ ├── Function.txt │ │ ├── HelloWorld.txt │ │ ├── Operation.txt │ │ └── RaiseException.txt │ ├── Declaration │ │ ├── Class.txt │ │ ├── Coroutine.txt │ │ ├── Enum.txt │ │ ├── Function.txt │ │ ├── HelloWorld.txt │ │ ├── Interface.txt │ │ ├── Namespace.txt │ │ ├── NestedNamespace.txt │ │ ├── StateMachine.txt │ │ ├── Struct.txt │ │ └── Variable.txt │ ├── Expression │ │ ├── Attach.txt │ │ ├── BinaryAscending.txt │ │ ├── BinaryDescending.txt │ │ ├── Bind.txt │ │ ├── Bracket.txt │ │ ├── Call.txt │ │ ├── CastStrong.txt │ │ ├── CastWeak.txt │ │ ├── Child.txt │ │ ├── Coroutine.txt │ │ ├── Detach.txt │ │ ├── EmptyCollection.txt │ │ ├── ExtendedObserve1.txt │ │ ├── ExtendedObserve2.txt │ │ ├── False.txt │ │ ├── Float.txt │ │ ├── FormatString.txt │ │ ├── Function.txt │ │ ├── HelloWorld.txt │ │ ├── Index.txt │ │ ├── Infer.txt │ │ ├── Integer.txt │ │ ├── IsNotNull.txt │ │ ├── IsNotType.txt │ │ ├── IsNull.txt │ │ ├── IsType.txt │ │ ├── Let.txt │ │ ├── List.txt │ │ ├── Map.txt │ │ ├── Member.txt │ │ ├── Negative.txt │ │ ├── New1.txt │ │ ├── New2.txt │ │ ├── Not.txt │ │ ├── Null.txt │ │ ├── OrderedLambda.txt │ │ ├── OrderedName.txt │ │ ├── Positive.txt │ │ ├── Range1.txt │ │ ├── Range2.txt │ │ ├── Range3.txt │ │ ├── Range4.txt │ │ ├── Reference.txt │ │ ├── SetIn.txt │ │ ├── SetNotIn.txt │ │ ├── SimpleObserve1.txt │ │ ├── SimpleObserve2.txt │ │ ├── String.txt │ │ ├── True.txt │ │ ├── TypeOfExpression.txt │ │ └── TypeOfType.txt │ ├── IndexAnalyzerError.txt │ ├── IndexAnalyzerScope.txt │ ├── IndexCodegen.txt │ ├── IndexDebugger.txt │ ├── IndexDeclaration.txt │ ├── IndexExpression.txt │ ├── IndexModule.txt │ ├── IndexStatement.txt │ ├── Module │ │ ├── HelloWorld.txt │ │ └── Useful.txt │ └── Statement │ │ ├── Break.txt │ │ ├── Continue.txt │ │ ├── Delete.txt │ │ ├── Expression.txt │ │ ├── ForEach.txt │ │ ├── ForEachReversed.txt │ │ ├── Goto.txt │ │ ├── HelloWorld.txt │ │ ├── If.txt │ │ ├── IfCast.txt │ │ ├── Raise.txt │ │ ├── Return.txt │ │ ├── Switch.txt │ │ ├── Try.txt │ │ ├── Variable.txt │ │ └── While.txt ├── Source │ ├── CppTypes.cpp │ ├── CppTypes.h │ ├── Helper.cpp │ ├── Helper.h │ ├── TestAnalyzer.cpp │ ├── TestCodegen.cpp │ ├── TestDebugger.cpp │ ├── TestDeserializationErrors.cpp │ ├── TestLibrary.cpp │ ├── TestRuntime.cpp │ └── TestSamples.cpp ├── SourceCppGen │ ├── AnonymousLambda.cpp │ ├── AnonymousLambda.h │ ├── BindComplex.cpp │ ├── BindComplex.h │ ├── BindCustomInterface.cpp │ ├── BindCustomInterface.h │ ├── BindCustomInterface2.cpp │ ├── BindCustomInterface2.h │ ├── BindCustomInterface2Reflection.cpp │ ├── BindCustomInterface2Reflection.h │ ├── BindCustomInterfaceReflection.cpp │ ├── BindCustomInterfaceReflection.h │ ├── BindFormat.cpp │ ├── BindFormat.h │ ├── BindLet.cpp │ ├── BindLet.h │ ├── BindLetReflection.cpp │ ├── BindLetReflection.h │ ├── BindNull.cpp │ ├── BindNull.h │ ├── BindNullReflection.cpp │ ├── BindNullReflection.h │ ├── BindSimple.cpp │ ├── BindSimple.h │ ├── BindSimple2.cpp │ ├── BindSimple2.h │ ├── BindSimple2Reflection.cpp │ ├── BindSimple2Reflection.h │ ├── BindSimpleReflection.cpp │ ├── BindSimpleReflection.h │ ├── CallStaticMethod.cpp │ ├── CallStaticMethod.h │ ├── CallStaticMethodReflection.cpp │ ├── CallStaticMethodReflection.h │ ├── ClassCtor.cpp │ ├── ClassCtor.h │ ├── ClassCtorReflection.cpp │ ├── ClassCtorReflection.h │ ├── ClassDtor.cpp │ ├── ClassDtor.h │ ├── ClassDtorReflection.cpp │ ├── ClassDtorReflection.h │ ├── ClassField.cpp │ ├── ClassField.h │ ├── ClassMethod.cpp │ ├── ClassMethod.h │ ├── ClassMethodReflection.cpp │ ├── ClassMethodReflection.h │ ├── CoAsync.cpp │ ├── CoAsync.h │ ├── CoAsync2.cpp │ ├── CoAsync2.h │ ├── CoAsync2Reflection.cpp │ ├── CoAsync2Reflection.h │ ├── CoAsyncReflection.cpp │ ├── CoAsyncReflection.h │ ├── CoEnum.cpp │ ├── CoEnum.h │ ├── CoEnum2.cpp │ ├── CoEnum2.h │ ├── CoRawCoroutine.cpp │ ├── CoRawCoroutine.h │ ├── CoRawCoroutine2.cpp │ ├── CoRawCoroutine2.h │ ├── CoRawCoroutine3.cpp │ ├── CoRawCoroutine3.h │ ├── CoRawCoroutine4.cpp │ ├── CoRawCoroutine4.h │ ├── CoRawCoroutine5.cpp │ ├── CoRawCoroutine5.h │ ├── CoRawCoroutine6.cpp │ ├── CoRawCoroutine6.h │ ├── CoRawCoroutine7.cpp │ ├── CoRawCoroutine7.h │ ├── CoSmcCalculator.cpp │ ├── CoSmcCalculator.h │ ├── CoSmcCalculatorReflection.cpp │ ├── CoSmcCalculatorReflection.h │ ├── CoSmcGoto.cpp │ ├── CoSmcGoto.h │ ├── CoSmcGotoReflection.cpp │ ├── CoSmcGotoReflection.h │ ├── CoSmcPush.cpp │ ├── CoSmcPush.h │ ├── CoSmcPushReflection.cpp │ ├── CoSmcPushReflection.h │ ├── CoSmcSwitchD1.cpp │ ├── CoSmcSwitchD1.h │ ├── CoSmcSwitchD1Reflection.cpp │ ├── CoSmcSwitchD1Reflection.h │ ├── CoSmcSwitchD2.cpp │ ├── CoSmcSwitchD2.h │ ├── CoSmcSwitchD2Reflection.cpp │ ├── CoSmcSwitchD2Reflection.h │ ├── CoSmcSwitchI1.cpp │ ├── CoSmcSwitchI1.h │ ├── CoSmcSwitchI1Reflection.cpp │ ├── CoSmcSwitchI1Reflection.h │ ├── CoSmcSwitchI2.cpp │ ├── CoSmcSwitchI2.h │ ├── CoSmcSwitchI2Reflection.cpp │ ├── CoSmcSwitchI2Reflection.h │ ├── CoSmcSwitchIR1.cpp │ ├── CoSmcSwitchIR1.h │ ├── CoSmcSwitchIR1Reflection.cpp │ ├── CoSmcSwitchIR1Reflection.h │ ├── CoSmcSwitchIR2.cpp │ ├── CoSmcSwitchIR2.h │ ├── CoSmcSwitchIR2Reflection.cpp │ ├── CoSmcSwitchIR2Reflection.h │ ├── CoSmcSwitchP1.cpp │ ├── CoSmcSwitchP1.h │ ├── CoSmcSwitchP1Reflection.cpp │ ├── CoSmcSwitchP1Reflection.h │ ├── CoSmcSwitchP2.cpp │ ├── CoSmcSwitchP2.h │ ├── CoSmcSwitchP2Reflection.cpp │ ├── CoSmcSwitchP2Reflection.h │ ├── CoSmcSwitchPR1.cpp │ ├── CoSmcSwitchPR1.h │ ├── CoSmcSwitchPR1Reflection.cpp │ ├── CoSmcSwitchPR1Reflection.h │ ├── CoSmcSwitchPR2.cpp │ ├── CoSmcSwitchPR2.h │ ├── CoSmcSwitchPR2Reflection.cpp │ ├── CoSmcSwitchPR2Reflection.h │ ├── CoSmcTryCatch1.cpp │ ├── CoSmcTryCatch1.h │ ├── CoSmcTryCatch1Reflection.cpp │ ├── CoSmcTryCatch1Reflection.h │ ├── CoSmcTryCatch2.cpp │ ├── CoSmcTryCatch2.h │ ├── CoSmcTryCatch2Reflection.cpp │ ├── CoSmcTryCatch2Reflection.h │ ├── ControlFlow.cpp │ ├── ControlFlow.h │ ├── Delete.cpp │ ├── Delete.h │ ├── ElementInSet.cpp │ ├── ElementInSet.h │ ├── EnumCtor.cpp │ ├── EnumCtor.h │ ├── EnumCtor2.cpp │ ├── EnumCtor2.h │ ├── EnumCtor2Reflection.cpp │ ├── EnumCtor2Reflection.h │ ├── Event.cpp │ ├── Event.h │ ├── Event2.cpp │ ├── Event2.h │ ├── Event2Reflection.cpp │ ├── Event2Reflection.h │ ├── FailedThen.cpp │ ├── FailedThen.h │ ├── ForEach.cpp │ ├── ForEach.h │ ├── GlobalVariable.cpp │ ├── GlobalVariable.h │ ├── HelloWorld.cpp │ ├── HelloWorld.h │ ├── IfNotNull.cpp │ ├── IfNotNull.h │ ├── LetIn.cpp │ ├── LetIn.h │ ├── ListProcessing.cpp │ ├── ListProcessing.h │ ├── MapProcessing.cpp │ ├── MapProcessing.h │ ├── MethodClosure.cpp │ ├── MethodClosure.h │ ├── NamedLambda.cpp │ ├── NamedLambda.h │ ├── NestedLambda.cpp │ ├── NestedLambda.h │ ├── NestedLambdaReflection.cpp │ ├── NestedLambdaReflection.h │ ├── NewCustomInterface.cpp │ ├── NewCustomInterface.h │ ├── NewCustomInterface2.cpp │ ├── NewCustomInterface2.h │ ├── NewCustomInterface2Reflection.cpp │ ├── NewCustomInterface2Reflection.h │ ├── NewCustomInterface3.cpp │ ├── NewCustomInterface3.h │ ├── NewCustomInterface3Reflection.cpp │ ├── NewCustomInterface3Reflection.h │ ├── NewCustomInterfaceReflection.cpp │ ├── NewCustomInterfaceReflection.h │ ├── NewEmptyInterface.cpp │ ├── NewEmptyInterface.h │ ├── NewEmptyInterfaceReflection.cpp │ ├── NewEmptyInterfaceReflection.h │ ├── NewInterface.cpp │ ├── NewInterface.h │ ├── NullableCast.cpp │ ├── NullableCast.h │ ├── NullableCastReflection.cpp │ ├── NullableCastReflection.h │ ├── ObservableList.cpp │ ├── ObservableList.h │ ├── OpAdd.cpp │ ├── OpAdd.h │ ├── OpAnd.cpp │ ├── OpAnd.h │ ├── OpCompare.cpp │ ├── OpCompare.h │ ├── OpCompareIndexOf.cpp │ ├── OpCompareIndexOf.h │ ├── OpCompareIndexOfReflection.cpp │ ├── OpCompareIndexOfReflection.h │ ├── OpCompareReference.cpp │ ├── OpCompareReference.h │ ├── OpCompareReflection.cpp │ ├── OpCompareReflection.h │ ├── OpCompareStruct1.cpp │ ├── OpCompareStruct1.h │ ├── OpCompareStruct2.cpp │ ├── OpCompareStruct2.h │ ├── OpCompareStruct2Reflection.cpp │ ├── OpCompareStruct2Reflection.h │ ├── OpCompareWithString.cpp │ ├── OpCompareWithString.h │ ├── OpDiv.cpp │ ├── OpDiv.h │ ├── OpMod.cpp │ ├── OpMod.h │ ├── OpMul.cpp │ ├── OpMul.h │ ├── OpNegative.cpp │ ├── OpNegative.h │ ├── OpNot.cpp │ ├── OpNot.h │ ├── OpOr.cpp │ ├── OpOr.h │ ├── OpPositive.cpp │ ├── OpPositive.h │ ├── OpShl.cpp │ ├── OpShl.h │ ├── OpShr.cpp │ ├── OpShr.h │ ├── OpSub.cpp │ ├── OpSub.h │ ├── OpXor.cpp │ ├── OpXor.h │ ├── OrderedLambda.cpp │ ├── OrderedLambda.h │ ├── Overloading.cpp │ ├── Overloading.h │ ├── Property.cpp │ ├── Property.h │ ├── RecursiveFunction.cpp │ ├── RecursiveFunction.h │ ├── StaticInit.cpp │ ├── StaticInit.h │ ├── StaticMethod.cpp │ ├── StaticMethod.h │ ├── StructCtor.cpp │ ├── StructCtor.h │ ├── StructCtor2.cpp │ ├── StructCtor2.h │ ├── StructCtor2Reflection.cpp │ ├── StructCtor2Reflection.h │ ├── StructCtorReflection.cpp │ ├── StructCtorReflection.h │ ├── TestCases.cpp │ ├── TryCatch.cpp │ ├── TryCatch.h │ ├── TryFinally.cpp │ ├── TryFinally.h │ ├── TryFinally2.cpp │ ├── TryFinally2.h │ ├── WorkflowAttributes.cpp │ ├── WorkflowAttributes.h │ ├── WorkflowAttributes1.h │ ├── WorkflowAttributesIncludes.h │ ├── WorkflowAttributesReflection.cpp │ ├── WorkflowAttributesReflection.h │ ├── WorkflowAttributes_Expression.cpp │ ├── WorkflowAttributes_Expression.h │ ├── WorkflowHints.cpp │ ├── WorkflowHints.h │ ├── WorkflowHintsReflection.cpp │ ├── WorkflowHintsReflection.h │ ├── WorkflowMultiFiles.cpp │ ├── WorkflowMultiFiles.h │ ├── WorkflowMultiFiles1.h │ ├── WorkflowMultiFiles2.h │ ├── WorkflowMultiFilesIncludes.h │ ├── WorkflowMultiFilesReflection.cpp │ ├── WorkflowMultiFilesReflection.h │ ├── WorkflowMultiFiles_Animal.cpp │ ├── WorkflowMultiFiles_Animal.h │ ├── WorkflowMultiFiles_Bird.cpp │ ├── WorkflowMultiFiles_Bird.h │ ├── WorkflowMultiFiles_Lion.cpp │ └── WorkflowMultiFiles_Lion.h └── UnitTest │ ├── CompilerTest_GenerateMetadata │ ├── CompilerTest_GenerateMetadata.vcxproj │ ├── CompilerTest_GenerateMetadata.vcxproj.filters │ └── Main.cpp │ ├── CompilerTest_LoadAndCompile │ ├── CompilerTest_LoadAndCompile.vcxproj │ ├── CompilerTest_LoadAndCompile.vcxproj.filters │ └── Main.cpp │ ├── CppTest │ ├── CppTest.vcxproj │ ├── CppTest.vcxproj.filters │ └── Main.cpp │ ├── CppTest_Metaonly │ ├── CppTest_Metaonly.vcxproj │ ├── CppTest_Metaonly.vcxproj.filters │ └── Main.cpp │ ├── CppTest_Reflection │ ├── CppTest_Reflection.vcxproj │ ├── CppTest_Reflection.vcxproj.filters │ └── Main.cpp │ ├── Generated_Cpp │ ├── Generated_Cpp.vcxitems │ └── Generated_Cpp.vcxitems.filters │ ├── Generated_Reflection │ ├── Generated_Reflection.vcxitems │ └── Generated_Reflection.vcxitems.filters │ ├── LibraryTest │ ├── LibraryTest.vcxproj │ ├── LibraryTest.vcxproj.filters │ └── Main.cpp │ ├── RuntimeTest │ ├── Main.cpp │ ├── RuntimeTest.vcxproj │ └── RuntimeTest.vcxproj.filters │ ├── UnitTest.sln │ ├── UnitTest_SharedTypes │ └── UnitTest_SharedTypes.vcxitems │ ├── VlppImport │ └── VlppImport.vcxitems │ ├── VlppWorkflow_Compiler │ ├── VlppWorkflow_Compiler.vcxitems │ └── VlppWorkflow_Compiler.vcxitems.filters │ ├── VlppWorkflow_Library │ ├── VlppWorkflow_Library.vcxitems │ └── VlppWorkflow_Library.vcxitems.filters │ └── VlppWorkflow_Runtime │ ├── VlppWorkflow_Runtime.vcxitems │ └── VlppWorkflow_Runtime.vcxitems.filters └── Tools └── CppMerge ├── CppMerge.sln ├── CppMerge ├── CppMerge.vcxproj ├── CppMerge.vcxproj.filters └── Main.cpp ├── makefile └── vmake /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/.gitignore -------------------------------------------------------------------------------- /Import/Vlpp.Linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/Vlpp.Linux.cpp -------------------------------------------------------------------------------- /Import/Vlpp.Windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/Vlpp.Windows.cpp -------------------------------------------------------------------------------- /Import/Vlpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/Vlpp.cpp -------------------------------------------------------------------------------- /Import/Vlpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/Vlpp.h -------------------------------------------------------------------------------- /Import/VlppGlrParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/VlppGlrParser.cpp -------------------------------------------------------------------------------- /Import/VlppGlrParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/VlppGlrParser.h -------------------------------------------------------------------------------- /Import/VlppGlrParserCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/VlppGlrParserCompiler.cpp -------------------------------------------------------------------------------- /Import/VlppGlrParserCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/VlppGlrParserCompiler.h -------------------------------------------------------------------------------- /Import/VlppOS.Linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/VlppOS.Linux.cpp -------------------------------------------------------------------------------- /Import/VlppOS.Windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/VlppOS.Windows.cpp -------------------------------------------------------------------------------- /Import/VlppOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/VlppOS.cpp -------------------------------------------------------------------------------- /Import/VlppOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/VlppOS.h -------------------------------------------------------------------------------- /Import/VlppReflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/VlppReflection.cpp -------------------------------------------------------------------------------- /Import/VlppReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/VlppReflection.h -------------------------------------------------------------------------------- /Import/VlppRegex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/VlppRegex.cpp -------------------------------------------------------------------------------- /Import/VlppRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Import/VlppRegex.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/README.md -------------------------------------------------------------------------------- /Release/CodegenConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Release/CodegenConfig.xml -------------------------------------------------------------------------------- /Release/VlppWorkflowCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Release/VlppWorkflowCompiler.cpp -------------------------------------------------------------------------------- /Release/VlppWorkflowCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Release/VlppWorkflowCompiler.h -------------------------------------------------------------------------------- /Release/VlppWorkflowLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Release/VlppWorkflowLibrary.cpp -------------------------------------------------------------------------------- /Release/VlppWorkflowLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Release/VlppWorkflowLibrary.h -------------------------------------------------------------------------------- /Release/VlppWorkflowRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Release/VlppWorkflowRuntime.cpp -------------------------------------------------------------------------------- /Release/VlppWorkflowRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Release/VlppWorkflowRuntime.h -------------------------------------------------------------------------------- /Source/Analyzer/WfAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Analyzer/WfAnalyzer.cpp -------------------------------------------------------------------------------- /Source/Analyzer/WfAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Analyzer/WfAnalyzer.h -------------------------------------------------------------------------------- /Source/Analyzer/WfAnalyzer_Errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Analyzer/WfAnalyzer_Errors.cpp -------------------------------------------------------------------------------- /Source/Analyzer/WfAnalyzer_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Analyzer/WfAnalyzer_Misc.cpp -------------------------------------------------------------------------------- /Source/Analyzer/WfAnalyzer_TypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Analyzer/WfAnalyzer_TypeInfo.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp.h -------------------------------------------------------------------------------- /Source/Cpp/WfCpp_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp_Class.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp_Collect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp_Collect.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp_Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp_Expression.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp_File.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp_GenerateCppFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp_GenerateCppFiles.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp_Statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp_Statement.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp_WriteClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp_WriteClass.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp_WriteEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp_WriteEnum.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp_WriteGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp_WriteGlobal.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp_WriteLambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp_WriteLambda.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp_WriteReflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp_WriteReflection.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfCpp_WriteStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfCpp_WriteStruct.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfMergeCpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfMergeCpp.cpp -------------------------------------------------------------------------------- /Source/Cpp/WfMergeCpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Cpp/WfMergeCpp.h -------------------------------------------------------------------------------- /Source/Emitter/WfEmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Emitter/WfEmitter.cpp -------------------------------------------------------------------------------- /Source/Emitter/WfEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Emitter/WfEmitter.h -------------------------------------------------------------------------------- /Source/Emitter/WfEmitter_Assembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Emitter/WfEmitter_Assembly.cpp -------------------------------------------------------------------------------- /Source/Emitter/WfEmitter_Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Emitter/WfEmitter_Expression.cpp -------------------------------------------------------------------------------- /Source/Emitter/WfEmitter_Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Emitter/WfEmitter_Metadata.cpp -------------------------------------------------------------------------------- /Source/Emitter/WfEmitter_Statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Emitter/WfEmitter_Statement.cpp -------------------------------------------------------------------------------- /Source/Library/WfLibraryCppHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Library/WfLibraryCppHelper.cpp -------------------------------------------------------------------------------- /Source/Library/WfLibraryCppHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Library/WfLibraryCppHelper.h -------------------------------------------------------------------------------- /Source/Library/WfLibraryPredefined.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Library/WfLibraryPredefined.cpp -------------------------------------------------------------------------------- /Source/Library/WfLibraryPredefined.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Library/WfLibraryPredefined.h -------------------------------------------------------------------------------- /Source/Library/WfLibraryReflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Library/WfLibraryReflection.cpp -------------------------------------------------------------------------------- /Source/Library/WfLibraryReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Library/WfLibraryReflection.h -------------------------------------------------------------------------------- /Source/Parser/Generated/WorkflowAst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Generated/WorkflowAst.cpp -------------------------------------------------------------------------------- /Source/Parser/Generated/WorkflowAst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Generated/WorkflowAst.h -------------------------------------------------------------------------------- /Source/Parser/Syntax/Ast/Ast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Syntax/Ast/Ast.txt -------------------------------------------------------------------------------- /Source/Parser/Syntax/Ast/Decls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Syntax/Ast/Decls.txt -------------------------------------------------------------------------------- /Source/Parser/Syntax/Ast/DeclsClass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Syntax/Ast/DeclsClass.txt -------------------------------------------------------------------------------- /Source/Parser/Syntax/Ast/DeclsEnum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Syntax/Ast/DeclsEnum.txt -------------------------------------------------------------------------------- /Source/Parser/Syntax/Ast/Module.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Syntax/Ast/Module.txt -------------------------------------------------------------------------------- /Source/Parser/Syntax/Ast/Statements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Syntax/Ast/Statements.txt -------------------------------------------------------------------------------- /Source/Parser/Syntax/Ast/Types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Syntax/Ast/Types.txt -------------------------------------------------------------------------------- /Source/Parser/Syntax/Lexer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Syntax/Lexer.txt -------------------------------------------------------------------------------- /Source/Parser/Syntax/Parser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Syntax/Parser.xml -------------------------------------------------------------------------------- /Source/Parser/Syntax/Syntax/Decls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Syntax/Syntax/Decls.txt -------------------------------------------------------------------------------- /Source/Parser/Syntax/Syntax/Module.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Syntax/Syntax/Module.txt -------------------------------------------------------------------------------- /Source/Parser/Syntax/Syntax/Types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/Syntax/Syntax/Types.txt -------------------------------------------------------------------------------- /Source/Parser/WfExpression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/WfExpression.cpp -------------------------------------------------------------------------------- /Source/Parser/WfExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Parser/WfExpression.h -------------------------------------------------------------------------------- /Source/Runtime/WfRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Runtime/WfRuntime.cpp -------------------------------------------------------------------------------- /Source/Runtime/WfRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Runtime/WfRuntime.h -------------------------------------------------------------------------------- /Source/Runtime/WfRuntimeAssembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Runtime/WfRuntimeAssembly.cpp -------------------------------------------------------------------------------- /Source/Runtime/WfRuntimeAssembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Runtime/WfRuntimeAssembly.h -------------------------------------------------------------------------------- /Source/Runtime/WfRuntimeConstructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Runtime/WfRuntimeConstructions.h -------------------------------------------------------------------------------- /Source/Runtime/WfRuntimeDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Runtime/WfRuntimeDebugger.cpp -------------------------------------------------------------------------------- /Source/Runtime/WfRuntimeDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Runtime/WfRuntimeDebugger.h -------------------------------------------------------------------------------- /Source/Runtime/WfRuntimeExecution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Runtime/WfRuntimeExecution.cpp -------------------------------------------------------------------------------- /Source/Runtime/WfRuntimeInstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Runtime/WfRuntimeInstruction.cpp -------------------------------------------------------------------------------- /Source/Runtime/WfRuntimeInstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Source/Runtime/WfRuntimeInstruction.h -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/TODO.md -------------------------------------------------------------------------------- /Test/Generated/Cpp32/AnonymousLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/AnonymousLambda.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/BindComplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/BindComplex.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/BindComplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/BindComplex.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/BindFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/BindFormat.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/BindFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/BindFormat.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/BindLet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/BindLet.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/BindLet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/BindLet.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/BindNull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/BindNull.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/BindNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/BindNull.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/BindSimple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/BindSimple.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/BindSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/BindSimple.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/BindSimple2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/BindSimple2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/BindSimple2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/BindSimple2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CallStaticMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CallStaticMethod.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ClassCtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ClassCtor.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ClassCtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ClassCtor.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ClassDtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ClassDtor.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ClassDtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ClassDtor.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ClassField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ClassField.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ClassField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ClassField.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ClassMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ClassMethod.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ClassMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ClassMethod.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoAsync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoAsync.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoAsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoAsync.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoAsync2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoAsync2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoAsync2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoAsync2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoEnum.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoEnum.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoEnum2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoEnum2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoEnum2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoEnum2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoRawCoroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoRawCoroutine.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoRawCoroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoRawCoroutine.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoRawCoroutine2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoRawCoroutine2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoRawCoroutine3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoRawCoroutine3.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoRawCoroutine4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoRawCoroutine4.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoRawCoroutine5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoRawCoroutine5.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoRawCoroutine6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoRawCoroutine6.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoRawCoroutine7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoRawCoroutine7.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcCalculator.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcGoto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcGoto.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcGoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcGoto.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcPush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcPush.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcPush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcPush.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchD1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchD1.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchD1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchD1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchD2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchD2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchD2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchD2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchI1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchI1.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchI1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchI1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchI2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchI2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchI2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchI2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchIR1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchIR1.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchIR1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchIR1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchIR2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchIR2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchIR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchIR2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchP1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchP1.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchP1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchP1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchP2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchP2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchP2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchP2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchPR1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchPR1.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchPR1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchPR1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchPR2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchPR2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcSwitchPR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcSwitchPR2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcTryCatch1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcTryCatch1.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcTryCatch1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcTryCatch1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcTryCatch2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcTryCatch2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/CoSmcTryCatch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/CoSmcTryCatch2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ControlFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ControlFlow.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ControlFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ControlFlow.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/Delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/Delete.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/Delete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/Delete.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ElementInSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ElementInSet.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ElementInSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ElementInSet.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/EnumCtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/EnumCtor.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/EnumCtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/EnumCtor.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/EnumCtor2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/EnumCtor2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/EnumCtor2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/EnumCtor2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/Event.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/Event.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/Event2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/Event2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/Event2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/Event2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/Event2Reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/Event2Reflection.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/FailedThen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/FailedThen.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/FailedThen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/FailedThen.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ForEach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ForEach.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ForEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ForEach.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/GlobalVariable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/GlobalVariable.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/GlobalVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/GlobalVariable.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/HelloWorld.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/HelloWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/HelloWorld.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/IfNotNull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/IfNotNull.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/IfNotNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/IfNotNull.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/LetIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/LetIn.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/LetIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/LetIn.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ListProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ListProcessing.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ListProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ListProcessing.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/MapProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/MapProcessing.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/MapProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/MapProcessing.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/MethodClosure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/MethodClosure.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/MethodClosure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/MethodClosure.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/NamedLambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/NamedLambda.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/NamedLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/NamedLambda.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/NestedLambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/NestedLambda.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/NestedLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/NestedLambda.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/NewInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/NewInterface.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/NewInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/NewInterface.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/NullableCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/NullableCast.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/NullableCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/NullableCast.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ObservableList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ObservableList.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/ObservableList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/ObservableList.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpAdd.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpAdd.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpAnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpAnd.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpAnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpAnd.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpCompare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpCompare.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpCompare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpCompare.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpCompareIndexOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpCompareIndexOf.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpCompareStruct1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpCompareStruct1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpCompareStruct2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpCompareStruct2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpDiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpDiv.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpDiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpDiv.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpMod.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpMod.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpMul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpMul.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpMul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpMul.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpNegative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpNegative.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpNegative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpNegative.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpNot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpNot.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpNot.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpOr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpOr.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpOr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpOr.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpPositive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpPositive.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpPositive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpPositive.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpShl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpShl.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpShl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpShl.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpShr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpShr.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpShr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpShr.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpSub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpSub.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpSub.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpXor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpXor.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OpXor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OpXor.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OrderedLambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OrderedLambda.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/OrderedLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/OrderedLambda.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/Overloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/Overloading.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/Overloading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/Overloading.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/Property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/Property.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/Property.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/StaticInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/StaticInit.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/StaticInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/StaticInit.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/StaticMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/StaticMethod.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/StaticMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/StaticMethod.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/StructCtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/StructCtor.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/StructCtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/StructCtor.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/StructCtor2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/StructCtor2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/StructCtor2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/StructCtor2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/TestCases.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/TestCases.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/TryCatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/TryCatch.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/TryCatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/TryCatch.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/TryFinally.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/TryFinally.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/TryFinally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/TryFinally.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/TryFinally2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/TryFinally2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/TryFinally2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/TryFinally2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp32/WorkflowHints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/WorkflowHints.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp32/WorkflowHints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp32/WorkflowHints.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/AnonymousLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/AnonymousLambda.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/BindComplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/BindComplex.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/BindComplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/BindComplex.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/BindFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/BindFormat.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/BindFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/BindFormat.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/BindLet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/BindLet.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/BindLet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/BindLet.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/BindNull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/BindNull.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/BindNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/BindNull.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/BindSimple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/BindSimple.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/BindSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/BindSimple.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/BindSimple2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/BindSimple2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/BindSimple2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/BindSimple2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CallStaticMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CallStaticMethod.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ClassCtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ClassCtor.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ClassCtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ClassCtor.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ClassDtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ClassDtor.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ClassDtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ClassDtor.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ClassField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ClassField.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ClassField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ClassField.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ClassMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ClassMethod.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ClassMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ClassMethod.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoAsync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoAsync.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoAsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoAsync.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoAsync2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoAsync2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoAsync2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoAsync2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoEnum.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoEnum.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoEnum2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoEnum2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoEnum2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoEnum2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoRawCoroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoRawCoroutine.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoRawCoroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoRawCoroutine.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoRawCoroutine2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoRawCoroutine2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoRawCoroutine3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoRawCoroutine3.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoRawCoroutine4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoRawCoroutine4.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoRawCoroutine5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoRawCoroutine5.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoRawCoroutine6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoRawCoroutine6.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoRawCoroutine7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoRawCoroutine7.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcCalculator.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcGoto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcGoto.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcGoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcGoto.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcPush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcPush.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcPush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcPush.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchD1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchD1.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchD1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchD1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchD2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchD2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchD2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchD2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchI1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchI1.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchI1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchI1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchI2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchI2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchI2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchI2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchIR1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchIR1.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchIR1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchIR1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchIR2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchIR2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchIR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchIR2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchP1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchP1.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchP1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchP1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchP2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchP2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchP2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchP2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchPR1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchPR1.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchPR1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchPR1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchPR2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchPR2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcSwitchPR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcSwitchPR2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcTryCatch1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcTryCatch1.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcTryCatch1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcTryCatch1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcTryCatch2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcTryCatch2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/CoSmcTryCatch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/CoSmcTryCatch2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ControlFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ControlFlow.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ControlFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ControlFlow.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/Delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/Delete.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/Delete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/Delete.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ElementInSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ElementInSet.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ElementInSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ElementInSet.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/EnumCtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/EnumCtor.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/EnumCtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/EnumCtor.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/EnumCtor2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/EnumCtor2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/EnumCtor2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/EnumCtor2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/Event.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/Event.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/Event2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/Event2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/Event2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/Event2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/Event2Reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/Event2Reflection.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/FailedThen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/FailedThen.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/FailedThen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/FailedThen.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ForEach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ForEach.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ForEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ForEach.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/GlobalVariable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/GlobalVariable.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/GlobalVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/GlobalVariable.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/HelloWorld.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/HelloWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/HelloWorld.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/IfNotNull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/IfNotNull.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/IfNotNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/IfNotNull.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/LetIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/LetIn.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/LetIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/LetIn.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ListProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ListProcessing.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ListProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ListProcessing.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/MapProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/MapProcessing.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/MapProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/MapProcessing.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/MethodClosure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/MethodClosure.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/MethodClosure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/MethodClosure.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/NamedLambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/NamedLambda.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/NamedLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/NamedLambda.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/NestedLambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/NestedLambda.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/NestedLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/NestedLambda.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/NewInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/NewInterface.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/NewInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/NewInterface.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/NullableCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/NullableCast.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/NullableCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/NullableCast.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ObservableList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ObservableList.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/ObservableList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/ObservableList.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpAdd.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpAdd.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpAnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpAnd.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpAnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpAnd.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpCompare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpCompare.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpCompare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpCompare.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpCompareIndexOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpCompareIndexOf.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpCompareStruct1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpCompareStruct1.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpCompareStruct2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpCompareStruct2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpDiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpDiv.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpDiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpDiv.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpMod.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpMod.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpMul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpMul.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpMul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpMul.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpNegative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpNegative.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpNegative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpNegative.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpNot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpNot.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpNot.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpOr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpOr.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpOr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpOr.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpPositive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpPositive.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpPositive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpPositive.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpShl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpShl.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpShl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpShl.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpShr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpShr.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpShr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpShr.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpSub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpSub.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpSub.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpXor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpXor.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OpXor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OpXor.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OrderedLambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OrderedLambda.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/OrderedLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/OrderedLambda.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/Overloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/Overloading.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/Overloading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/Overloading.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/Property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/Property.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/Property.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/StaticInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/StaticInit.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/StaticInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/StaticInit.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/StaticMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/StaticMethod.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/StaticMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/StaticMethod.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/StructCtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/StructCtor.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/StructCtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/StructCtor.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/StructCtor2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/StructCtor2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/StructCtor2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/StructCtor2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/TestCases.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/TestCases.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/TryCatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/TryCatch.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/TryCatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/TryCatch.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/TryFinally.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/TryFinally.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/TryFinally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/TryFinally.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/TryFinally2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/TryFinally2.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/TryFinally2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/TryFinally2.h -------------------------------------------------------------------------------- /Test/Generated/Cpp64/WorkflowHints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/WorkflowHints.cpp -------------------------------------------------------------------------------- /Test/Generated/Cpp64/WorkflowHints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Cpp64/WorkflowHints.h -------------------------------------------------------------------------------- /Test/Generated/Reflection32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Reflection32.bin -------------------------------------------------------------------------------- /Test/Generated/Reflection32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Reflection32.txt -------------------------------------------------------------------------------- /Test/Generated/Reflection32[2].txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Reflection32[2].txt -------------------------------------------------------------------------------- /Test/Generated/Reflection64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Reflection64.bin -------------------------------------------------------------------------------- /Test/Generated/Reflection64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Reflection64.txt -------------------------------------------------------------------------------- /Test/Generated/Reflection64[2].txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Generated/Reflection64[2].txt -------------------------------------------------------------------------------- /Test/Linux/CppTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Linux/CppTest/makefile -------------------------------------------------------------------------------- /Test/Linux/CppTest/vmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Linux/CppTest/vmake -------------------------------------------------------------------------------- /Test/Linux/CppTest_Metaonly/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Linux/CppTest_Metaonly/makefile -------------------------------------------------------------------------------- /Test/Linux/CppTest_Metaonly/vmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Linux/CppTest_Metaonly/vmake -------------------------------------------------------------------------------- /Test/Linux/CppTest_Reflection/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Linux/CppTest_Reflection/makefile -------------------------------------------------------------------------------- /Test/Linux/CppTest_Reflection/vmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Linux/CppTest_Reflection/vmake -------------------------------------------------------------------------------- /Test/Linux/LibraryTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Linux/LibraryTest/makefile -------------------------------------------------------------------------------- /Test/Linux/LibraryTest/vmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Linux/LibraryTest/vmake -------------------------------------------------------------------------------- /Test/Linux/RuntimeTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Linux/RuntimeTest/makefile -------------------------------------------------------------------------------- /Test/Linux/RuntimeTest/vmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Linux/RuntimeTest/vmake -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A0_WrongFormatStringSyntax.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | raise $"1 + 2 = $(1+)"; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A0_WrongFormatStringSyntax2.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | raise $"$(1"; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A10_ConstructorToStruct.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x : string = {}; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A10_WrongIfVariable.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main() : void 4 | { 5 | if(var x : int = 100){} 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A25_AssignToArgument.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main(a : int):void 4 | { 5 | a=2; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A25_AssignToConstant.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | 1=2; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A25_AssignToFunction.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():string 4 | { 5 | main = ""; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A29_ThisInClassField.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | class A 4 | { 5 | var a : A* = this; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A29_ThisInGlobalFunction.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main() : void 4 | { 5 | this; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A29_ThisInGlobalVariable.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | var a = this; -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A29_ThisInOrderedLambda.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main() : void 4 | { 5 | [this]; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A33_StrongExpectedTypeCastToImplicitType.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | var x = cast * 0; -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A33_WeakExpectedTypeCastToImplicitType.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | var x = 0 as *; -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A3_ObserveNotInBind.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | a.observe(b); 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A5_ConstructorMixMapAndList.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x = {1 2:3}; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A7_ScopeNameIsNotExpression.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | namespace ns 4 | { 5 | var x = ns; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A9_ConstructorCannotResolveType.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x = {}; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/A9_NullCannotResolveType.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x = null; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B0_VoidAutoProperty.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | class A 4 | { 5 | prop x : void = 0 {} 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B0_VoidEventArgument.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | interface A 4 | { 5 | event B(void); 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B0_VoidProperty.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | interface A 4 | { 5 | prop X : void {GetX} 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B1_InterfaceArgument.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main(args : interface):void 4 | { 5 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B1_InterfaceVariable.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x : interface = null; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B2_RawPointerToEnumerable.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x : int{}* = null; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B2_RawPointerToMap.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x : int[int]* = null; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B2_RawPointerToString.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x : string* = null; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B2_RawPointerToStruct.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main(): ::system::String* 4 | { 5 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B3_SharedPointerToMap.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x : int[int]^ = null; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B3_SharedPointerToString.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x : string^ = null; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B3_SharedPointerToStruct.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main(): ::system::String^ 4 | { 5 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B4_NullableToClass.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main(): ::system::Function? 4 | { 5 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B4_NullableToEnumerable.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x : int{}? = null; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B4_NullableToMap.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x : int[int]? = null; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B5_ChildOfEnumerable.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x : int{}::Child = null; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B5_ChildOfMap.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | var x : int[int]::Child = null; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/B7_ClassNotForValue.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main(): ::system::Function 4 | { 5 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/C0_BreakNotInLoop.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | break; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/C1_ContinueNotInLoop.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | continue; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/C2_RethrowNotInCatch.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | raise; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/C3_TryMissCatchAndFinally.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void 4 | { 5 | try{} 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/C4_ReturnMissExpression.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():int 4 | { 5 | return; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/C6_ReturnValueInStaticInit.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | using system::*; 3 | 4 | static 5 | { 6 | return 0; 7 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/C7_CoPauseInFunction.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | using system::*; 3 | 4 | func main():void 5 | { 6 | $pause; 7 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/C9_CoProviderNotExists.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | using system::*; 3 | 4 | func main():int[string] 5 | ${ 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/C9_CoProviderNotExists2.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | using system::*; 3 | 4 | func main():void 5 | $Delay{ 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/C9_CoProviderNotExists3.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | using system::*; 3 | 4 | func main():void 5 | $Enumerator{ 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D0_AnonymousFunction.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func ():void 4 | { 5 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D0_ClassMethodNoBlock.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | class A 4 | { 5 | func B():void; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D0_FunctionNoBlock.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():void; -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D0_InterfaceMethodHasBlock.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | interface A 4 | { 5 | func B():void{} 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D0_InterfaceStaticMethodNoBlock.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | interface A 4 | { 5 | static func B():void; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D12_StructContainsIDescriptable.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | struct Point 4 | { 5 | x : interface^; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D12_StructContainsObject.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | struct Point 4 | { 5 | x : object; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D15_AttributeNotExists.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | @cpp:NotExists 4 | var x = 0; -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D16_SmcNotInheritFromStateMachine.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | class SM 4 | { 5 | $state_machine{} 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D1_DuplicatedClass.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | namespace system 4 | { 5 | class String 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D7_ConstructorOutsideOfClasses.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | using system::*; 3 | 4 | new(){} -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D7_DestructorOutsideOfClasses.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | using system::*; 3 | 4 | delete {} -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D7_EventOutsideOfClasses.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | using system::*; 3 | 4 | event A(); -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D7_PropertyOutsideOfClasses.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | using system::*; 3 | 4 | prop A:int{B,C} -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/D7_StaticInitInClass.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | using system::*; 3 | 4 | class X 5 | { 6 | static {} 7 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/E0_NoWildCard.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | using system; -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/E0_TooManyWildCard.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | using system::reflection::*Info*; -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/E0_WildCardInWrongPlace.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | using system::*::*Info; -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/F0_TypeTopQualifiedSymbolNotExists.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main(): ::not_exists 4 | { 5 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/F1_TypeChildSymbolNotExists.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main(): ::system::not_exists 4 | { 5 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/F2_TypeReferenceNotExists.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():not_exists 4 | { 5 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/G10_DuplicatedBaseInterface1.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | interface A : A 4 | { 5 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/G13_UnInitializedAutoPropertyInClass.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | class A 4 | { 5 | prop P : string {} 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/G6_WrongBaseConstructorType.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | class A 4 | { 5 | new() :B*() {} 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/G6_WrongBaseTypeOfClass1.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | using system::*; 4 | 5 | class A : Int32 6 | { 7 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/G6_WrongInterfaceBaseType.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | using system::*; 4 | 5 | class A : interface 6 | { 7 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/G6_WrongObjectBaseType.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | using system::*; 4 | 5 | class A : object 6 | { 7 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/G6_WrongObjectBaseType2.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | using system::*; 4 | 5 | interface A : object 6 | { 7 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/G8_OverrideInInterface.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | interface A 4 | { 5 | override func B() : void; 6 | } -------------------------------------------------------------------------------- /Test/Resources/AnalyzerError/G9_MissingFieldType.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | class A 4 | { 5 | var x = 0; 6 | } -------------------------------------------------------------------------------- /Test/Resources/Codegen/BindComplex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/BindComplex.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/BindFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/BindFormat.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/BindLet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/BindLet.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/BindNull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/BindNull.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/BindSimple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/BindSimple.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/BindSimple2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/BindSimple2.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/ClassCtor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/ClassCtor.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/ClassDtor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/ClassDtor.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/ClassField.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/ClassField.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/ClassMethod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/ClassMethod.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/CoAsync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/CoAsync.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/CoAsync2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/CoAsync2.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/CoEnum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/CoEnum.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/CoEnum2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/CoEnum2.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/CoSmcGoto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/CoSmcGoto.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/CoSmcPush.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/CoSmcPush.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/ControlFlow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/ControlFlow.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/Delete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/Delete.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/ElementInSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/ElementInSet.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/EnumCtor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/EnumCtor.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/EnumCtor2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/EnumCtor2.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/Event.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/Event.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/Event2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/Event2.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/FailedThen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/FailedThen.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/ForEach.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/ForEach.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/HelloWorld.txt: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | func main():string 4 | { 5 | return "Hello, world!"; 6 | } -------------------------------------------------------------------------------- /Test/Resources/Codegen/IfNotNull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/IfNotNull.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/LetIn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/LetIn.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/NamedLambda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/NamedLambda.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/NestedLambda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/NestedLambda.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/NewInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/NewInterface.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/NullableCast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/NullableCast.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpAdd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpAdd.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpAnd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpAnd.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpCompare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpCompare.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpDiv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpDiv.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpMod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpMod.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpMul.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpMul.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpNegative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpNegative.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpNot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpNot.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpOr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpOr.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpPositive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpPositive.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpShl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpShl.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpShr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpShr.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpSub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpSub.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/OpXor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/OpXor.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/Overloading.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/Overloading.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/Property.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/Property.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/StaticInit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/StaticInit.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/StaticMethod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/StaticMethod.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/StructCtor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/StructCtor.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/StructCtor2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/StructCtor2.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/TryCatch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/TryCatch.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/TryFinally.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/TryFinally.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/TryFinally2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/TryFinally2.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/TypeOf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/TypeOf.txt -------------------------------------------------------------------------------- /Test/Resources/Codegen/TypeTesting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Codegen/TypeTesting.txt -------------------------------------------------------------------------------- /Test/Resources/Debugger/Assignment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Debugger/Assignment.txt -------------------------------------------------------------------------------- /Test/Resources/Debugger/Event.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Debugger/Event.txt -------------------------------------------------------------------------------- /Test/Resources/Debugger/Function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Debugger/Function.txt -------------------------------------------------------------------------------- /Test/Resources/Debugger/HelloWorld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Debugger/HelloWorld.txt -------------------------------------------------------------------------------- /Test/Resources/Debugger/Operation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Debugger/Operation.txt -------------------------------------------------------------------------------- /Test/Resources/Declaration/Class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Declaration/Class.txt -------------------------------------------------------------------------------- /Test/Resources/Declaration/Enum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Declaration/Enum.txt -------------------------------------------------------------------------------- /Test/Resources/Declaration/Function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Declaration/Function.txt -------------------------------------------------------------------------------- /Test/Resources/Declaration/HelloWorld.txt: -------------------------------------------------------------------------------- 1 | func HelloWorld():void {} -------------------------------------------------------------------------------- /Test/Resources/Declaration/Struct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Declaration/Struct.txt -------------------------------------------------------------------------------- /Test/Resources/Declaration/Variable.txt: -------------------------------------------------------------------------------- 1 | var a : int = 0; -------------------------------------------------------------------------------- /Test/Resources/Expression/Attach.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Expression/Attach.txt -------------------------------------------------------------------------------- /Test/Resources/Expression/Bind.txt: -------------------------------------------------------------------------------- 1 | bind(a.b) 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Bracket.txt: -------------------------------------------------------------------------------- 1 | (1+2) 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Call.txt: -------------------------------------------------------------------------------- 1 | sin(x) 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/CastStrong.txt: -------------------------------------------------------------------------------- 1 | cast int a 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/CastWeak.txt: -------------------------------------------------------------------------------- 1 | a as int 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Child.txt: -------------------------------------------------------------------------------- 1 | A::B 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Coroutine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Expression/Coroutine.txt -------------------------------------------------------------------------------- /Test/Resources/Expression/Detach.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Expression/Detach.txt -------------------------------------------------------------------------------- /Test/Resources/Expression/EmptyCollection.txt: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/ExtendedObserve1.txt: -------------------------------------------------------------------------------- 1 | a.observe as _a(_a.b) 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/False.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /Test/Resources/Expression/Float.txt: -------------------------------------------------------------------------------- 1 | 100.1 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/FormatString.txt: -------------------------------------------------------------------------------- 1 | $"a+b=$(a+b)" 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Function.txt: -------------------------------------------------------------------------------- 1 | func():int { return 1; } 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/HelloWorld.txt: -------------------------------------------------------------------------------- 1 | HelloWorld -------------------------------------------------------------------------------- /Test/Resources/Expression/Index.txt: -------------------------------------------------------------------------------- 1 | x[y] 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Infer.txt: -------------------------------------------------------------------------------- 1 | a of int 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Integer.txt: -------------------------------------------------------------------------------- 1 | 100 -------------------------------------------------------------------------------- /Test/Resources/Expression/IsNotNull.txt: -------------------------------------------------------------------------------- 1 | a is not null 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/IsNotType.txt: -------------------------------------------------------------------------------- 1 | a is not int 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/IsNull.txt: -------------------------------------------------------------------------------- 1 | a is null 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/IsType.txt: -------------------------------------------------------------------------------- 1 | a is int 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Let.txt: -------------------------------------------------------------------------------- 1 | let a1=100, b=200 in (a + b) -------------------------------------------------------------------------------- /Test/Resources/Expression/List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Expression/List.txt -------------------------------------------------------------------------------- /Test/Resources/Expression/Map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Expression/Map.txt -------------------------------------------------------------------------------- /Test/Resources/Expression/Member.txt: -------------------------------------------------------------------------------- 1 | a.b 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Negative.txt: -------------------------------------------------------------------------------- 1 | -a 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/New1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Expression/New1.txt -------------------------------------------------------------------------------- /Test/Resources/Expression/New2.txt: -------------------------------------------------------------------------------- 1 | new Button("Press Me!") -------------------------------------------------------------------------------- /Test/Resources/Expression/Not.txt: -------------------------------------------------------------------------------- 1 | not a 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Null.txt: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /Test/Resources/Expression/OrderedLambda.txt: -------------------------------------------------------------------------------- 1 | [$1+$2] 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/OrderedName.txt: -------------------------------------------------------------------------------- 1 | $1 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Positive.txt: -------------------------------------------------------------------------------- 1 | +a 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Range1.txt: -------------------------------------------------------------------------------- 1 | range (1,9) 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Range2.txt: -------------------------------------------------------------------------------- 1 | range (1,9] 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Range3.txt: -------------------------------------------------------------------------------- 1 | range [1,9) 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Range4.txt: -------------------------------------------------------------------------------- 1 | range (31,9] 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/Reference.txt: -------------------------------------------------------------------------------- 1 | Name 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/SetIn.txt: -------------------------------------------------------------------------------- 1 | a in b 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/SetNotIn.txt: -------------------------------------------------------------------------------- 1 | a not in b 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/SimpleObserve1.txt: -------------------------------------------------------------------------------- 1 | a.observe(b) 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/SimpleObserve2.txt: -------------------------------------------------------------------------------- 1 | a.observe(b on bChanged) 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/String.txt: -------------------------------------------------------------------------------- 1 | "Workflow" 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/True.txt: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /Test/Resources/Expression/TypeOfExpression.txt: -------------------------------------------------------------------------------- 1 | type(1) 2 | -------------------------------------------------------------------------------- /Test/Resources/Expression/TypeOfType.txt: -------------------------------------------------------------------------------- 1 | typeof(int) 2 | -------------------------------------------------------------------------------- /Test/Resources/IndexAnalyzerError.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/IndexAnalyzerError.txt -------------------------------------------------------------------------------- /Test/Resources/IndexAnalyzerScope.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/IndexAnalyzerScope.txt -------------------------------------------------------------------------------- /Test/Resources/IndexCodegen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/IndexCodegen.txt -------------------------------------------------------------------------------- /Test/Resources/IndexDebugger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/IndexDebugger.txt -------------------------------------------------------------------------------- /Test/Resources/IndexDeclaration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/IndexDeclaration.txt -------------------------------------------------------------------------------- /Test/Resources/IndexExpression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/IndexExpression.txt -------------------------------------------------------------------------------- /Test/Resources/IndexModule.txt: -------------------------------------------------------------------------------- 1 | HelloWorld 2 | Useful -------------------------------------------------------------------------------- /Test/Resources/IndexStatement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/IndexStatement.txt -------------------------------------------------------------------------------- /Test/Resources/Module/HelloWorld.txt: -------------------------------------------------------------------------------- 1 | module HelloWorld; -------------------------------------------------------------------------------- /Test/Resources/Module/Useful.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Module/Useful.txt -------------------------------------------------------------------------------- /Test/Resources/Statement/Break.txt: -------------------------------------------------------------------------------- 1 | break; 2 | -------------------------------------------------------------------------------- /Test/Resources/Statement/Continue.txt: -------------------------------------------------------------------------------- 1 | continue; 2 | -------------------------------------------------------------------------------- /Test/Resources/Statement/Delete.txt: -------------------------------------------------------------------------------- 1 | delete new Button(); 2 | -------------------------------------------------------------------------------- /Test/Resources/Statement/Expression.txt: -------------------------------------------------------------------------------- 1 | 1+2; 2 | -------------------------------------------------------------------------------- /Test/Resources/Statement/ForEach.txt: -------------------------------------------------------------------------------- 1 | for(x in range [1,10)) {Fuck();} 2 | -------------------------------------------------------------------------------- /Test/Resources/Statement/ForEachReversed.txt: -------------------------------------------------------------------------------- 1 | for(x in reversed range [1,10)) {Fuck();} 2 | -------------------------------------------------------------------------------- /Test/Resources/Statement/Goto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Statement/Goto.txt -------------------------------------------------------------------------------- /Test/Resources/Statement/HelloWorld.txt: -------------------------------------------------------------------------------- 1 | return HelloWorld; -------------------------------------------------------------------------------- /Test/Resources/Statement/If.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Statement/If.txt -------------------------------------------------------------------------------- /Test/Resources/Statement/IfCast.txt: -------------------------------------------------------------------------------- 1 | if (var a : Button = GetControl()) {return "Yes!";} -------------------------------------------------------------------------------- /Test/Resources/Statement/Raise.txt: -------------------------------------------------------------------------------- 1 | raise "Exception"; 2 | -------------------------------------------------------------------------------- /Test/Resources/Statement/Return.txt: -------------------------------------------------------------------------------- 1 | return null; 2 | -------------------------------------------------------------------------------- /Test/Resources/Statement/Switch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Statement/Switch.txt -------------------------------------------------------------------------------- /Test/Resources/Statement/Try.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Resources/Statement/Try.txt -------------------------------------------------------------------------------- /Test/Resources/Statement/Variable.txt: -------------------------------------------------------------------------------- 1 | var a : int = 100; 2 | -------------------------------------------------------------------------------- /Test/Resources/Statement/While.txt: -------------------------------------------------------------------------------- 1 | while(true) {Fuck();} 2 | -------------------------------------------------------------------------------- /Test/Source/CppTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Source/CppTypes.cpp -------------------------------------------------------------------------------- /Test/Source/CppTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Source/CppTypes.h -------------------------------------------------------------------------------- /Test/Source/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Source/Helper.cpp -------------------------------------------------------------------------------- /Test/Source/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Source/Helper.h -------------------------------------------------------------------------------- /Test/Source/TestAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Source/TestAnalyzer.cpp -------------------------------------------------------------------------------- /Test/Source/TestCodegen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Source/TestCodegen.cpp -------------------------------------------------------------------------------- /Test/Source/TestDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Source/TestDebugger.cpp -------------------------------------------------------------------------------- /Test/Source/TestLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Source/TestLibrary.cpp -------------------------------------------------------------------------------- /Test/Source/TestRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Source/TestRuntime.cpp -------------------------------------------------------------------------------- /Test/Source/TestSamples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/Source/TestSamples.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/AnonymousLambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/AnonymousLambda.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/AnonymousLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/AnonymousLambda.h -------------------------------------------------------------------------------- /Test/SourceCppGen/BindComplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindComplex.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/BindComplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindComplex.h -------------------------------------------------------------------------------- /Test/SourceCppGen/BindCustomInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindCustomInterface.h -------------------------------------------------------------------------------- /Test/SourceCppGen/BindFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindFormat.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/BindFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindFormat.h -------------------------------------------------------------------------------- /Test/SourceCppGen/BindLet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindLet.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/BindLet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindLet.h -------------------------------------------------------------------------------- /Test/SourceCppGen/BindLetReflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindLetReflection.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/BindLetReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindLetReflection.h -------------------------------------------------------------------------------- /Test/SourceCppGen/BindNull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindNull.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/BindNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindNull.h -------------------------------------------------------------------------------- /Test/SourceCppGen/BindNullReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindNullReflection.h -------------------------------------------------------------------------------- /Test/SourceCppGen/BindSimple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindSimple.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/BindSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindSimple.h -------------------------------------------------------------------------------- /Test/SourceCppGen/BindSimple2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindSimple2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/BindSimple2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/BindSimple2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CallStaticMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CallStaticMethod.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CallStaticMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CallStaticMethod.h -------------------------------------------------------------------------------- /Test/SourceCppGen/ClassCtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ClassCtor.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/ClassCtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ClassCtor.h -------------------------------------------------------------------------------- /Test/SourceCppGen/ClassCtorReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ClassCtorReflection.h -------------------------------------------------------------------------------- /Test/SourceCppGen/ClassDtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ClassDtor.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/ClassDtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ClassDtor.h -------------------------------------------------------------------------------- /Test/SourceCppGen/ClassDtorReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ClassDtorReflection.h -------------------------------------------------------------------------------- /Test/SourceCppGen/ClassField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ClassField.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/ClassField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ClassField.h -------------------------------------------------------------------------------- /Test/SourceCppGen/ClassMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ClassMethod.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/ClassMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ClassMethod.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoAsync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoAsync.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoAsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoAsync.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoAsync2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoAsync2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoAsync2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoAsync2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoAsync2Reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoAsync2Reflection.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoAsyncReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoAsyncReflection.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoEnum.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoEnum.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoEnum2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoEnum2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoEnum2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoEnum2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine3.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine3.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine4.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine4.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine5.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine5.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine6.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine6.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine7.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoRawCoroutine7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoRawCoroutine7.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcCalculator.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcCalculator.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcGoto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcGoto.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcGoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcGoto.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcPush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcPush.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcPush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcPush.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchD1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchD1.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchD1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchD1.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchD2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchD2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchD2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchD2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchI1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchI1.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchI1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchI1.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchI2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchI2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchI2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchI2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchIR1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchIR1.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchIR1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchIR1.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchIR2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchIR2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchIR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchIR2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchP1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchP1.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchP1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchP1.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchP2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchP2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchP2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchP2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchPR1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchPR1.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchPR1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchPR1.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchPR2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchPR2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcSwitchPR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcSwitchPR2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcTryCatch1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcTryCatch1.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcTryCatch1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcTryCatch1.h -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcTryCatch2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcTryCatch2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/CoSmcTryCatch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/CoSmcTryCatch2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/ControlFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ControlFlow.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/ControlFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ControlFlow.h -------------------------------------------------------------------------------- /Test/SourceCppGen/Delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/Delete.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/Delete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/Delete.h -------------------------------------------------------------------------------- /Test/SourceCppGen/ElementInSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ElementInSet.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/ElementInSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ElementInSet.h -------------------------------------------------------------------------------- /Test/SourceCppGen/EnumCtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/EnumCtor.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/EnumCtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/EnumCtor.h -------------------------------------------------------------------------------- /Test/SourceCppGen/EnumCtor2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/EnumCtor2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/EnumCtor2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/EnumCtor2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/Event.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/Event.h -------------------------------------------------------------------------------- /Test/SourceCppGen/Event2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/Event2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/Event2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/Event2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/Event2Reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/Event2Reflection.h -------------------------------------------------------------------------------- /Test/SourceCppGen/FailedThen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/FailedThen.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/FailedThen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/FailedThen.h -------------------------------------------------------------------------------- /Test/SourceCppGen/ForEach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ForEach.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/ForEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ForEach.h -------------------------------------------------------------------------------- /Test/SourceCppGen/GlobalVariable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/GlobalVariable.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/GlobalVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/GlobalVariable.h -------------------------------------------------------------------------------- /Test/SourceCppGen/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/HelloWorld.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/HelloWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/HelloWorld.h -------------------------------------------------------------------------------- /Test/SourceCppGen/IfNotNull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/IfNotNull.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/IfNotNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/IfNotNull.h -------------------------------------------------------------------------------- /Test/SourceCppGen/LetIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/LetIn.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/LetIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/LetIn.h -------------------------------------------------------------------------------- /Test/SourceCppGen/ListProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ListProcessing.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/ListProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ListProcessing.h -------------------------------------------------------------------------------- /Test/SourceCppGen/MapProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/MapProcessing.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/MapProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/MapProcessing.h -------------------------------------------------------------------------------- /Test/SourceCppGen/MethodClosure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/MethodClosure.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/MethodClosure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/MethodClosure.h -------------------------------------------------------------------------------- /Test/SourceCppGen/NamedLambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/NamedLambda.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/NamedLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/NamedLambda.h -------------------------------------------------------------------------------- /Test/SourceCppGen/NestedLambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/NestedLambda.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/NestedLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/NestedLambda.h -------------------------------------------------------------------------------- /Test/SourceCppGen/NewEmptyInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/NewEmptyInterface.h -------------------------------------------------------------------------------- /Test/SourceCppGen/NewInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/NewInterface.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/NewInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/NewInterface.h -------------------------------------------------------------------------------- /Test/SourceCppGen/NullableCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/NullableCast.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/NullableCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/NullableCast.h -------------------------------------------------------------------------------- /Test/SourceCppGen/ObservableList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ObservableList.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/ObservableList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/ObservableList.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpAdd.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpAdd.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpAnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpAnd.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpAnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpAnd.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpCompare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpCompare.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpCompare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpCompare.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpCompareIndexOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpCompareIndexOf.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpCompareStruct1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpCompareStruct1.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpCompareStruct2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpCompareStruct2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpDiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpDiv.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpDiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpDiv.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpMod.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpMod.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpMul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpMul.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpMul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpMul.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpNegative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpNegative.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpNegative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpNegative.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpNot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpNot.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpNot.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpOr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpOr.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpOr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpOr.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpPositive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpPositive.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpPositive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpPositive.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpShl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpShl.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpShl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpShl.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpShr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpShr.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpShr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpShr.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpSub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpSub.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpSub.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OpXor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpXor.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OpXor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OpXor.h -------------------------------------------------------------------------------- /Test/SourceCppGen/OrderedLambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OrderedLambda.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/OrderedLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/OrderedLambda.h -------------------------------------------------------------------------------- /Test/SourceCppGen/Overloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/Overloading.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/Overloading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/Overloading.h -------------------------------------------------------------------------------- /Test/SourceCppGen/Property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/Property.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/Property.h -------------------------------------------------------------------------------- /Test/SourceCppGen/RecursiveFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/RecursiveFunction.h -------------------------------------------------------------------------------- /Test/SourceCppGen/StaticInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/StaticInit.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/StaticInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/StaticInit.h -------------------------------------------------------------------------------- /Test/SourceCppGen/StaticMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/StaticMethod.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/StaticMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/StaticMethod.h -------------------------------------------------------------------------------- /Test/SourceCppGen/StructCtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/StructCtor.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/StructCtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/StructCtor.h -------------------------------------------------------------------------------- /Test/SourceCppGen/StructCtor2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/StructCtor2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/StructCtor2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/StructCtor2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/TestCases.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/TestCases.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/TryCatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/TryCatch.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/TryCatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/TryCatch.h -------------------------------------------------------------------------------- /Test/SourceCppGen/TryFinally.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/TryFinally.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/TryFinally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/TryFinally.h -------------------------------------------------------------------------------- /Test/SourceCppGen/TryFinally2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/TryFinally2.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/TryFinally2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/TryFinally2.h -------------------------------------------------------------------------------- /Test/SourceCppGen/WorkflowHints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/WorkflowHints.cpp -------------------------------------------------------------------------------- /Test/SourceCppGen/WorkflowHints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/SourceCppGen/WorkflowHints.h -------------------------------------------------------------------------------- /Test/UnitTest/CppTest/CppTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/UnitTest/CppTest/CppTest.vcxproj -------------------------------------------------------------------------------- /Test/UnitTest/CppTest/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/UnitTest/CppTest/Main.cpp -------------------------------------------------------------------------------- /Test/UnitTest/LibraryTest/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/UnitTest/LibraryTest/Main.cpp -------------------------------------------------------------------------------- /Test/UnitTest/RuntimeTest/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/UnitTest/RuntimeTest/Main.cpp -------------------------------------------------------------------------------- /Test/UnitTest/UnitTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Test/UnitTest/UnitTest.sln -------------------------------------------------------------------------------- /Tools/CppMerge/CppMerge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Tools/CppMerge/CppMerge.sln -------------------------------------------------------------------------------- /Tools/CppMerge/CppMerge/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Tools/CppMerge/CppMerge/Main.cpp -------------------------------------------------------------------------------- /Tools/CppMerge/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Tools/CppMerge/makefile -------------------------------------------------------------------------------- /Tools/CppMerge/vmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vczh-libraries/Workflow/HEAD/Tools/CppMerge/vmake --------------------------------------------------------------------------------