├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── codeql.yml │ └── publish.yml ├── .gitignore ├── Directory.Build.props ├── LICENSE ├── README.md ├── Synto.Diagnostics.NuGet.md ├── Synto.NuGet.md ├── Synto.sln.DotSettings ├── Synto.slnx ├── examples └── Synto.Examples │ ├── Program.cs │ └── Synto.Examples.csproj ├── src ├── Synto.Bootstrap │ ├── CSharpSyntaxQuoter.Generated.cs │ ├── CSharpSyntaxQuoter.cs │ ├── CSharpSyntaxQuoterGenerator.cs │ ├── Helpers.cs │ ├── SymbolExtensions.cs │ └── Synto.Bootstrap.csproj ├── Synto.Diagnostics │ ├── AnalyzerReleases.Shipped.md │ ├── AnalyzerReleases.Unshipped.md │ ├── Diagnostics.cs │ ├── DiagnosticsGenerator.cs │ ├── Synto.Diagnostics.csproj │ └── TargetInfo.cs ├── Synto.SourceGenerator │ ├── AnalyzerReleases.Shipped.md │ ├── AnalyzerReleases.Unshipped.md │ ├── Diagnostics.cs │ ├── Synto.SourceGenerator.csproj │ └── Templating │ │ ├── BranchPruneIdentifier.cs │ │ ├── InlinedParameterFinder.cs │ │ ├── InlinedTypeParameterFinder.cs │ │ ├── SyntaxParameterFinder.cs │ │ ├── TemplateFactorySourceGenerator.cs │ │ ├── TemplateInfo.cs │ │ ├── TemplateSyntaxQuoter.cs │ │ └── TemplateSyntaxQuoterInvoker.cs └── Synto │ ├── CSharpSyntaxQuoter.cs │ ├── ClassDeclarationSyntaxExtensions.cs │ ├── Formatting │ └── SyntaxFormatter.cs │ ├── GeneratedSourceFilenameExtensions.cs │ ├── LiteralSyntaxExtensions.cs │ ├── QuoteSyntaxExtensions.cs │ ├── SymbolExtensions.cs │ ├── SyntaxListExtensions.cs │ ├── Synto.csproj │ ├── Templating │ ├── InlineAttribute.cs │ ├── RuntimeAttribute.cs │ ├── Syntax.cs │ ├── TemplateAttribute.cs │ └── TemplateOption.cs │ └── UsingDirectiveSet.cs ├── test ├── .gitattributes ├── .gitignore ├── Synto.Bootstrap.Test │ ├── .editorconfig │ ├── CSharpSyntaxQuoterGeneratorTest.cs │ ├── ModuleInitializer.cs │ ├── Synto.Bootstrap.Test.csproj │ ├── Usings.cs │ └── snapshots │ │ └── CSharpSyntaxQuoterGeneratorTest.VerifySnapshot#CSharpSyntaxQuoter.verified.cs ├── Synto.Diagnostics.Test │ ├── .editorconfig │ ├── DiagnosticsGeneratorTest.cs │ ├── GlobalUsings.cs │ ├── ModuleInitializer.cs │ ├── Synto.Diagnostics.Test.csproj │ └── snapshots │ │ ├── DiagnosticsGeneratorTest.WithBlockScopedNamespaces#Synto.Diagnostics.DiagnosticsAttribute.g.verified.cs │ │ ├── DiagnosticsGeneratorTest.WithBlockScopedNamespaces#X.Y.Z.Diagnostics.InternalError.g.verified.cs │ │ ├── DiagnosticsGeneratorTest.WithFileScopedNamespace#Synto.Diagnostics.DiagnosticsAttribute.g.verified.cs │ │ └── DiagnosticsGeneratorTest.WithFileScopedNamespace#X.Y.Z.Diagnostics.InternalError.g.verified.cs └── Synto.Test │ ├── .editorconfig │ ├── ModuleInitializer.cs │ ├── RoundTripTests.cs │ ├── Synto.Test.csproj │ └── Templating │ ├── SimpleTemplateTest.cs │ └── snapshots │ ├── SimpleTemplateTest.ClassTemplate#Factory.TestClass.g.verified.cs │ ├── SimpleTemplateTest.EvaluateNumericParameter#Factory.LocalFunction.g.verified.cs │ ├── SimpleTemplateTest.FunctionAsSingle#Factory.LocalFunction.g.verified.cs │ ├── SimpleTemplateTest.FunctionWithMultipleStatementAsSingle.g.verified.txt │ ├── SimpleTemplateTest.FunctionWithMultipleStatementAsSingle.verified.txt │ ├── SimpleTemplateTest.InlineGenericType#Factory.LocalFunction.g.verified.cs │ ├── SimpleTemplateTest.InlineGenericTypeAsSyntax#Factory.LocalFunction.g.verified.cs │ ├── SimpleTemplateTest.InlineGenericValue#Factory.LocalFunction.g.verified.cs │ ├── SimpleTemplateTest.InlineGenericValueAsSyntax#Factory.LocalFunction.g.verified.cs │ ├── SimpleTemplateTest.LocalFunctionAsBare#Factory.LocalFunction.g.verified.cs │ ├── SimpleTemplateTest.LocalFunctionAsDefault#Factory.LocalFunction.g.verified.cs │ ├── SimpleTemplateTest.LocalFunctionAsSingle#Factory.LocalFunction.g.verified.cs │ ├── SimpleTemplateTest.StaticLocalFunctionAsBare#Factory.LocalFunction.g.verified.cs │ ├── SimpleTemplateTest.StaticLocalFunctionAsDefault#Factory.LocalFunction.g.verified.cs │ ├── SimpleTemplateTest.StaticLocalFunctionAsSingle#Factory.LocalFunction.g.verified.cs │ ├── SimpleTemplateTest.WithSyntaxOfString#Factory.LocalFunction.g.verified.cs │ └── SimpleTemplateTest.WithSyntaxOfT#Factory.LocalFunction.g.verified.cs └── version.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/README.md -------------------------------------------------------------------------------- /Synto.Diagnostics.NuGet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/Synto.Diagnostics.NuGet.md -------------------------------------------------------------------------------- /Synto.NuGet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/Synto.NuGet.md -------------------------------------------------------------------------------- /Synto.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/Synto.sln.DotSettings -------------------------------------------------------------------------------- /Synto.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/Synto.slnx -------------------------------------------------------------------------------- /examples/Synto.Examples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/examples/Synto.Examples/Program.cs -------------------------------------------------------------------------------- /examples/Synto.Examples/Synto.Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/examples/Synto.Examples/Synto.Examples.csproj -------------------------------------------------------------------------------- /src/Synto.Bootstrap/CSharpSyntaxQuoter.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.Bootstrap/CSharpSyntaxQuoter.Generated.cs -------------------------------------------------------------------------------- /src/Synto.Bootstrap/CSharpSyntaxQuoter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.Bootstrap/CSharpSyntaxQuoter.cs -------------------------------------------------------------------------------- /src/Synto.Bootstrap/CSharpSyntaxQuoterGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.Bootstrap/CSharpSyntaxQuoterGenerator.cs -------------------------------------------------------------------------------- /src/Synto.Bootstrap/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.Bootstrap/Helpers.cs -------------------------------------------------------------------------------- /src/Synto.Bootstrap/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.Bootstrap/SymbolExtensions.cs -------------------------------------------------------------------------------- /src/Synto.Bootstrap/Synto.Bootstrap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.Bootstrap/Synto.Bootstrap.csproj -------------------------------------------------------------------------------- /src/Synto.Diagnostics/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.Diagnostics/AnalyzerReleases.Shipped.md -------------------------------------------------------------------------------- /src/Synto.Diagnostics/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.Diagnostics/AnalyzerReleases.Unshipped.md -------------------------------------------------------------------------------- /src/Synto.Diagnostics/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.Diagnostics/Diagnostics.cs -------------------------------------------------------------------------------- /src/Synto.Diagnostics/DiagnosticsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.Diagnostics/DiagnosticsGenerator.cs -------------------------------------------------------------------------------- /src/Synto.Diagnostics/Synto.Diagnostics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.Diagnostics/Synto.Diagnostics.csproj -------------------------------------------------------------------------------- /src/Synto.Diagnostics/TargetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.Diagnostics/TargetInfo.cs -------------------------------------------------------------------------------- /src/Synto.SourceGenerator/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.SourceGenerator/AnalyzerReleases.Shipped.md -------------------------------------------------------------------------------- /src/Synto.SourceGenerator/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.SourceGenerator/AnalyzerReleases.Unshipped.md -------------------------------------------------------------------------------- /src/Synto.SourceGenerator/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.SourceGenerator/Diagnostics.cs -------------------------------------------------------------------------------- /src/Synto.SourceGenerator/Synto.SourceGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.SourceGenerator/Synto.SourceGenerator.csproj -------------------------------------------------------------------------------- /src/Synto.SourceGenerator/Templating/BranchPruneIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.SourceGenerator/Templating/BranchPruneIdentifier.cs -------------------------------------------------------------------------------- /src/Synto.SourceGenerator/Templating/InlinedParameterFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.SourceGenerator/Templating/InlinedParameterFinder.cs -------------------------------------------------------------------------------- /src/Synto.SourceGenerator/Templating/InlinedTypeParameterFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.SourceGenerator/Templating/InlinedTypeParameterFinder.cs -------------------------------------------------------------------------------- /src/Synto.SourceGenerator/Templating/SyntaxParameterFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.SourceGenerator/Templating/SyntaxParameterFinder.cs -------------------------------------------------------------------------------- /src/Synto.SourceGenerator/Templating/TemplateFactorySourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.SourceGenerator/Templating/TemplateFactorySourceGenerator.cs -------------------------------------------------------------------------------- /src/Synto.SourceGenerator/Templating/TemplateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.SourceGenerator/Templating/TemplateInfo.cs -------------------------------------------------------------------------------- /src/Synto.SourceGenerator/Templating/TemplateSyntaxQuoter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.SourceGenerator/Templating/TemplateSyntaxQuoter.cs -------------------------------------------------------------------------------- /src/Synto.SourceGenerator/Templating/TemplateSyntaxQuoterInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto.SourceGenerator/Templating/TemplateSyntaxQuoterInvoker.cs -------------------------------------------------------------------------------- /src/Synto/CSharpSyntaxQuoter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/CSharpSyntaxQuoter.cs -------------------------------------------------------------------------------- /src/Synto/ClassDeclarationSyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/ClassDeclarationSyntaxExtensions.cs -------------------------------------------------------------------------------- /src/Synto/Formatting/SyntaxFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/Formatting/SyntaxFormatter.cs -------------------------------------------------------------------------------- /src/Synto/GeneratedSourceFilenameExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/GeneratedSourceFilenameExtensions.cs -------------------------------------------------------------------------------- /src/Synto/LiteralSyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/LiteralSyntaxExtensions.cs -------------------------------------------------------------------------------- /src/Synto/QuoteSyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/QuoteSyntaxExtensions.cs -------------------------------------------------------------------------------- /src/Synto/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/SymbolExtensions.cs -------------------------------------------------------------------------------- /src/Synto/SyntaxListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/SyntaxListExtensions.cs -------------------------------------------------------------------------------- /src/Synto/Synto.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/Synto.csproj -------------------------------------------------------------------------------- /src/Synto/Templating/InlineAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/Templating/InlineAttribute.cs -------------------------------------------------------------------------------- /src/Synto/Templating/RuntimeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/Templating/RuntimeAttribute.cs -------------------------------------------------------------------------------- /src/Synto/Templating/Syntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/Templating/Syntax.cs -------------------------------------------------------------------------------- /src/Synto/Templating/TemplateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/Templating/TemplateAttribute.cs -------------------------------------------------------------------------------- /src/Synto/Templating/TemplateOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/Templating/TemplateOption.cs -------------------------------------------------------------------------------- /src/Synto/UsingDirectiveSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/src/Synto/UsingDirectiveSet.cs -------------------------------------------------------------------------------- /test/.gitattributes: -------------------------------------------------------------------------------- 1 | *.verified.* text eol=lf -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | *.received.* -------------------------------------------------------------------------------- /test/Synto.Bootstrap.Test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Bootstrap.Test/.editorconfig -------------------------------------------------------------------------------- /test/Synto.Bootstrap.Test/CSharpSyntaxQuoterGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Bootstrap.Test/CSharpSyntaxQuoterGeneratorTest.cs -------------------------------------------------------------------------------- /test/Synto.Bootstrap.Test/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Bootstrap.Test/ModuleInitializer.cs -------------------------------------------------------------------------------- /test/Synto.Bootstrap.Test/Synto.Bootstrap.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Bootstrap.Test/Synto.Bootstrap.Test.csproj -------------------------------------------------------------------------------- /test/Synto.Bootstrap.Test/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /test/Synto.Bootstrap.Test/snapshots/CSharpSyntaxQuoterGeneratorTest.VerifySnapshot#CSharpSyntaxQuoter.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Bootstrap.Test/snapshots/CSharpSyntaxQuoterGeneratorTest.VerifySnapshot#CSharpSyntaxQuoter.verified.cs -------------------------------------------------------------------------------- /test/Synto.Diagnostics.Test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Diagnostics.Test/.editorconfig -------------------------------------------------------------------------------- /test/Synto.Diagnostics.Test/DiagnosticsGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Diagnostics.Test/DiagnosticsGeneratorTest.cs -------------------------------------------------------------------------------- /test/Synto.Diagnostics.Test/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /test/Synto.Diagnostics.Test/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Diagnostics.Test/ModuleInitializer.cs -------------------------------------------------------------------------------- /test/Synto.Diagnostics.Test/Synto.Diagnostics.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Diagnostics.Test/Synto.Diagnostics.Test.csproj -------------------------------------------------------------------------------- /test/Synto.Diagnostics.Test/snapshots/DiagnosticsGeneratorTest.WithBlockScopedNamespaces#Synto.Diagnostics.DiagnosticsAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Diagnostics.Test/snapshots/DiagnosticsGeneratorTest.WithBlockScopedNamespaces#Synto.Diagnostics.DiagnosticsAttribute.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Diagnostics.Test/snapshots/DiagnosticsGeneratorTest.WithBlockScopedNamespaces#X.Y.Z.Diagnostics.InternalError.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Diagnostics.Test/snapshots/DiagnosticsGeneratorTest.WithBlockScopedNamespaces#X.Y.Z.Diagnostics.InternalError.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Diagnostics.Test/snapshots/DiagnosticsGeneratorTest.WithFileScopedNamespace#Synto.Diagnostics.DiagnosticsAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Diagnostics.Test/snapshots/DiagnosticsGeneratorTest.WithFileScopedNamespace#Synto.Diagnostics.DiagnosticsAttribute.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Diagnostics.Test/snapshots/DiagnosticsGeneratorTest.WithFileScopedNamespace#X.Y.Z.Diagnostics.InternalError.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Diagnostics.Test/snapshots/DiagnosticsGeneratorTest.WithFileScopedNamespace#X.Y.Z.Diagnostics.InternalError.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/.editorconfig -------------------------------------------------------------------------------- /test/Synto.Test/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/ModuleInitializer.cs -------------------------------------------------------------------------------- /test/Synto.Test/RoundTripTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/RoundTripTests.cs -------------------------------------------------------------------------------- /test/Synto.Test/Synto.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Synto.Test.csproj -------------------------------------------------------------------------------- /test/Synto.Test/Templating/SimpleTemplateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/SimpleTemplateTest.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.ClassTemplate#Factory.TestClass.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.ClassTemplate#Factory.TestClass.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.EvaluateNumericParameter#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.EvaluateNumericParameter#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.FunctionAsSingle#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.FunctionAsSingle#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.FunctionWithMultipleStatementAsSingle.g.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.FunctionWithMultipleStatementAsSingle.g.verified.txt -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.FunctionWithMultipleStatementAsSingle.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.FunctionWithMultipleStatementAsSingle.verified.txt -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.InlineGenericType#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.InlineGenericType#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.InlineGenericTypeAsSyntax#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.InlineGenericTypeAsSyntax#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.InlineGenericValue#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.InlineGenericValue#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.InlineGenericValueAsSyntax#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.InlineGenericValueAsSyntax#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.LocalFunctionAsBare#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.LocalFunctionAsBare#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.LocalFunctionAsDefault#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.LocalFunctionAsDefault#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.LocalFunctionAsSingle#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.LocalFunctionAsSingle#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.StaticLocalFunctionAsBare#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.StaticLocalFunctionAsBare#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.StaticLocalFunctionAsDefault#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.StaticLocalFunctionAsDefault#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.StaticLocalFunctionAsSingle#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.StaticLocalFunctionAsSingle#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.WithSyntaxOfString#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/test/Synto.Test/Templating/snapshots/SimpleTemplateTest.WithSyntaxOfString#Factory.LocalFunction.g.verified.cs -------------------------------------------------------------------------------- /test/Synto.Test/Templating/snapshots/SimpleTemplateTest.WithSyntaxOfT#Factory.LocalFunction.g.verified.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoz/Synto/HEAD/version.json --------------------------------------------------------------------------------