├── .devcontainer ├── Dockerfile ├── devcontainer.json └── scripts │ └── container-creation.sh ├── .editorconfig ├── .gitattributes ├── .github └── CODEOWNERS ├── .gitignore ├── .globalconfig ├── .vscode ├── extensions.json └── settings.json ├── .vsconfig ├── CODE-OF-CONDUCT.md ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE.txt ├── NuGet.config ├── README.md ├── activate.ps1 ├── activate.sh ├── azure-pipelines.yml ├── eng ├── Publishing.props ├── SourceBuild.props ├── SourceBuildPrebuiltBaseline.xml ├── Version.Details.xml ├── Versions.props └── common │ ├── CIBuild.cmd │ ├── PSScriptAnalyzerSettings.psd1 │ ├── README.md │ ├── SetupNugetSources.ps1 │ ├── SetupNugetSources.sh │ ├── build.ps1 │ ├── build.sh │ ├── cibuild.sh │ ├── cross │ ├── arm │ │ ├── sources.list.bionic │ │ ├── sources.list.jessie │ │ ├── sources.list.xenial │ │ ├── sources.list.zesty │ │ ├── tizen-build-rootfs.sh │ │ ├── tizen-fetch.sh │ │ └── tizen │ │ │ └── tizen.patch │ ├── arm64 │ │ ├── sources.list.bionic │ │ ├── sources.list.buster │ │ ├── sources.list.stretch │ │ ├── sources.list.xenial │ │ ├── sources.list.zesty │ │ ├── tizen-build-rootfs.sh │ │ ├── tizen-fetch.sh │ │ └── tizen │ │ │ └── tizen.patch │ ├── armel │ │ ├── armel.jessie.patch │ │ ├── sources.list.jessie │ │ ├── tizen-build-rootfs.sh │ │ ├── tizen-fetch.sh │ │ └── tizen │ │ │ ├── tizen-dotnet.ks │ │ │ └── tizen.patch │ ├── armv6 │ │ └── sources.list.buster │ ├── build-android-rootfs.sh │ ├── build-rootfs.sh │ ├── ppc64le │ │ └── sources.list.bionic │ ├── s390x │ │ └── sources.list.bionic │ ├── toolchain.cmake │ └── x86 │ │ ├── sources.list.bionic │ │ ├── sources.list.xenial │ │ ├── tizen-build-rootfs.sh │ │ ├── tizen-fetch.sh │ │ └── tizen │ │ └── tizen.patch │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.sh │ ├── enable-cross-org-publishing.ps1 │ ├── generate-locproject.ps1 │ ├── generate-sbom-prep.ps1 │ ├── generate-sbom-prep.sh │ ├── helixpublish.proj │ ├── init-tools-native.cmd │ ├── init-tools-native.ps1 │ ├── init-tools-native.sh │ ├── internal-feed-operations.ps1 │ ├── internal-feed-operations.sh │ ├── internal │ ├── Directory.Build.props │ ├── NuGet.config │ └── Tools.csproj │ ├── msbuild.ps1 │ ├── msbuild.sh │ ├── native │ ├── CommonLibrary.psm1 │ ├── common-library.sh │ ├── init-compiler.sh │ ├── install-cmake-test.sh │ ├── install-cmake.sh │ └── install-tool.ps1 │ ├── pipeline-logging-functions.ps1 │ ├── pipeline-logging-functions.sh │ ├── post-build │ ├── add-build-to-channel.ps1 │ ├── check-channel-consistency.ps1 │ ├── nuget-validation.ps1 │ ├── post-build-utils.ps1 │ ├── publish-using-darc.ps1 │ ├── sourcelink-validation.ps1 │ ├── symbols-validation.ps1 │ └── trigger-subscriptions.ps1 │ ├── retain-build.ps1 │ ├── sdk-task.ps1 │ ├── sdl │ ├── NuGet.config │ ├── configure-sdl-tool.ps1 │ ├── execute-all-sdl-tools.ps1 │ ├── extract-artifact-archives.ps1 │ ├── extract-artifact-packages.ps1 │ ├── init-sdl.ps1 │ ├── packages.config │ └── run-sdl.ps1 │ ├── templates │ ├── job │ │ ├── execute-sdl.yml │ │ ├── job.yml │ │ ├── onelocbuild.yml │ │ ├── publish-build-assets.yml │ │ ├── source-build.yml │ │ └── source-index-stage1.yml │ ├── jobs │ │ ├── codeql-build.yml │ │ ├── jobs.yml │ │ └── source-build.yml │ ├── post-build │ │ ├── common-variables.yml │ │ ├── post-build.yml │ │ ├── setup-maestro-vars.yml │ │ └── trigger-subscription.yml │ ├── steps │ │ ├── add-build-to-channel.yml │ │ ├── build-reason.yml │ │ ├── execute-codeql.yml │ │ ├── execute-sdl.yml │ │ ├── generate-sbom.yml │ │ ├── publish-logs.yml │ │ ├── retain-build.yml │ │ ├── run-on-unix.yml │ │ ├── run-on-windows.yml │ │ ├── run-script-ifequalelse.yml │ │ ├── send-to-helix.yml │ │ ├── source-build.yml │ │ ├── telemetry-end.yml │ │ └── telemetry-start.yml │ └── variables │ │ └── sdl-variables.yml │ ├── tools.ps1 │ └── tools.sh ├── global.json ├── razor-compiler.sln ├── restore.cmd ├── restore.sh └── src ├── .vscode └── launch.json ├── .vsconfig ├── Assets ├── TestPackages │ ├── PackageLibraryDirectDependency │ │ ├── PackageLibraryDirectDependency │ │ │ ├── Components │ │ │ │ ├── App.razor │ │ │ │ └── App.razor.css │ │ │ ├── Microsoft.AspNetCore.StaticWebAssets.cache │ │ │ ├── PackageLibraryDirectDependency.csproj │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ └── js │ │ │ │ └── pkg-direct-dep.js │ │ └── PackageLibraryTransitiveDependency │ │ │ ├── PackageLibraryTransitiveDependency.csproj │ │ │ └── wwwroot │ │ │ └── js │ │ │ └── pkg-transitive-dep.js │ └── PackageLibraryTransitiveDependency │ │ ├── PackageLibraryTransitiveDependency.csproj │ │ └── wwwroot │ │ └── js │ │ └── pkg-transitive-dep.js └── TestProjects │ ├── BlazorHosted │ ├── blazorhosted │ │ ├── Program.cs │ │ └── blazorhosted.csproj │ ├── blazorwasm │ │ ├── App.razor │ │ ├── LinkToWebRoot │ │ │ └── css │ │ │ │ └── app.css │ │ ├── Pages │ │ │ └── Index.razor │ │ ├── Program.cs │ │ ├── Resources.ja.resx.txt │ │ ├── _Imports.razor │ │ ├── blazorwasm.csproj │ │ └── wwwroot │ │ │ ├── Fake-License.txt │ │ │ ├── css │ │ │ └── app.css │ │ │ ├── index.html │ │ │ └── serviceworkers │ │ │ ├── my-prod-service-worker.js │ │ │ └── my-service-worker.js │ ├── classlibrarywithsatelliteassemblies │ │ ├── Class1.cs │ │ ├── Resources.es-ES.resx │ │ └── classlibrarywithsatelliteassemblies.csproj │ └── razorclasslibrary │ │ ├── Class1.cs │ │ ├── RazorClassLibrary.csproj │ │ └── wwwroot │ │ ├── styles.css │ │ └── wwwroot │ │ └── exampleJsInterop.js │ ├── BlazorHostedRID │ ├── blazorhosted │ │ ├── Program.cs │ │ └── blazorhosted-rid.csproj │ ├── blazorwasm │ │ ├── App.razor │ │ ├── LinkToWebRoot │ │ │ └── css │ │ │ │ └── app.css │ │ ├── Pages │ │ │ └── Index.razor │ │ ├── Program.cs │ │ ├── Resources.ja.resx.txt │ │ ├── _Imports.razor │ │ ├── blazorwasm.csproj │ │ └── wwwroot │ │ │ ├── Fake-License.txt │ │ │ ├── css │ │ │ └── app.css │ │ │ ├── index.html │ │ │ └── serviceworkers │ │ │ ├── my-prod-service-worker.js │ │ │ └── my-service-worker.js │ ├── classlibrarywithsatelliteassemblies │ │ ├── Class1.cs │ │ ├── Resources.es-ES.resx │ │ └── classlibrarywithsatelliteassemblies.csproj │ └── razorclasslibrary │ │ ├── Class1.cs │ │ ├── RazorClassLibrary.csproj │ │ └── wwwroot │ │ ├── styles.css │ │ └── wwwroot │ │ └── exampleJsInterop.js │ ├── BlazorMultiApp │ ├── BlazorMultipleApps.FirstClient │ │ ├── App.razor │ │ ├── BlazorMultipleApps.FirstClient.csproj │ │ ├── Program.cs │ │ └── wwwroot │ │ │ ├── css │ │ │ └── app.css │ │ │ └── index.html │ ├── BlazorMultipleApps.SecondClient │ │ ├── App.razor │ │ ├── BlazorMultipleApps.SecondClient.csproj │ │ ├── Program.cs │ │ └── wwwroot │ │ │ ├── css │ │ │ └── app.css │ │ │ └── index.html │ ├── BlazorMultipleApps.Server │ │ ├── BlazorMultipleApps.Server.csproj │ │ └── Program.cs │ └── BlazorMultipleApps.Shared │ │ ├── BlazorMultipleApps.Shared.csproj │ │ └── WeatherForecast.cs │ ├── BlazorWasmHosted50 │ ├── BlazorWasmHosted50.sln │ ├── Client │ │ ├── App.razor │ │ ├── BlazorWasmHosted50.Client.csproj │ │ ├── Pages │ │ │ └── Index.razor │ │ ├── Program.cs │ │ ├── Shared │ │ │ ├── MainLayout.razor │ │ │ └── MainLayout.razor.css │ │ ├── _Imports.razor │ │ └── wwwroot │ │ │ ├── css │ │ │ └── app.css │ │ │ └── index.html │ ├── Server │ │ ├── BlazorWasmHosted50.Server.csproj │ │ ├── Controllers │ │ │ └── WeatherForecastController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── Shared │ │ ├── BlazorWasmHosted50.Shared.csproj │ │ └── WeatherForecast.cs │ ├── BlazorWasmHosted60 │ ├── BlazorWasmHosted60.sln │ ├── Client │ │ ├── App.razor │ │ ├── BlazorWasmHosted60.Client.csproj │ │ ├── Pages │ │ │ └── Index.razor │ │ ├── Program.cs │ │ ├── Shared │ │ │ ├── MainLayout.razor │ │ │ └── MainLayout.razor.css │ │ ├── _Imports.razor │ │ └── wwwroot │ │ │ ├── css │ │ │ └── app.css │ │ │ └── index.html │ ├── Server │ │ ├── BlazorWasmHosted60.Server.csproj │ │ ├── Controllers │ │ │ └── WeatherForecastController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── Shared │ │ ├── BlazorWasmHosted60.Shared.csproj │ │ └── WeatherForecast.cs │ ├── BlazorWasmMinimal │ ├── App.razor │ ├── Pages │ │ └── Index.razor │ ├── Program.cs │ ├── _Imports.razor │ ├── blazorwasm-minimal.csproj │ └── wwwroot │ │ ├── css │ │ └── app.css │ │ └── index.html │ ├── BlazorWasmWithLibrary │ ├── LinkBaseToWebRoot │ │ └── js │ │ │ └── LinkedScript.js │ ├── blazorwasm │ │ ├── App.razor │ │ ├── LinkToWebRoot │ │ │ └── css │ │ │ │ └── app.css │ │ ├── Pages │ │ │ └── Index.razor │ │ ├── Program.cs │ │ ├── Resources.ja.resx.txt │ │ ├── _Imports.razor │ │ ├── blazorwasm.csproj │ │ ├── css │ │ │ └── app.css │ │ └── wwwroot │ │ │ ├── Fake-License.txt │ │ │ ├── css │ │ │ └── app.css │ │ │ ├── index.html │ │ │ └── serviceworkers │ │ │ ├── my-prod-service-worker.js │ │ │ └── my-service-worker.js │ ├── classlibrarywithsatelliteassemblies │ │ ├── Class1.cs │ │ ├── Resources.es-ES.resx │ │ └── classlibrarywithsatelliteassemblies.csproj │ └── razorclasslibrary │ │ ├── Class1.cs │ │ ├── RazorClassLibrary.csproj │ │ └── wwwroot │ │ ├── styles.css │ │ └── wwwroot │ │ └── exampleJsInterop.js │ ├── RazorAppWithP2PReference │ ├── AnotherClassLib │ │ ├── AnotherClassLib.csproj │ │ ├── Class2.cs │ │ ├── Views │ │ │ ├── Shared │ │ │ │ └── Index.cshtml │ │ │ └── _ViewImports.cshtml │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ └── js │ │ │ └── project-direct-dep.js │ ├── AppWithP2PReference │ │ ├── AppWithP2PReference.csproj │ │ ├── Models │ │ │ └── ErrorViewModel.cs │ │ ├── Program.cs │ │ └── Views │ │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ ├── ClassLibrary │ │ ├── Class1.cs │ │ ├── ClassLibrary.csproj │ │ ├── Components │ │ │ ├── App.razor │ │ │ └── App.razor.css │ │ ├── Views │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ └── _ViewImports.cshtml │ │ └── wwwroot │ │ │ └── js │ │ │ ├── project-transitive-dep.js │ │ │ └── project-transitive-dep.v4.js │ └── ClassLibraryMvc21 │ │ ├── Areas │ │ └── MyFeature │ │ │ └── Pages │ │ │ ├── Page1.cshtml │ │ │ └── Page1.cshtml.cs │ │ └── ClassLibraryMvc21.csproj │ ├── RazorAppWithPackageAndP2PReference │ ├── AnotherClassLib │ │ ├── AnotherClassLib.csproj │ │ ├── Class2.cs │ │ ├── Views │ │ │ ├── Shared │ │ │ │ └── Index.cshtml │ │ │ └── _ViewImports.cshtml │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ └── js │ │ │ └── project-direct-dep.js │ ├── AppWithPackageAndP2PReference │ │ ├── AppWithPackageAndP2PReference.csproj │ │ ├── Program.cs │ │ └── TestPackages │ │ │ └── _._ │ ├── ClassLibrary │ │ ├── Class1.cs │ │ ├── ClassLibrary.csproj │ │ ├── Components │ │ │ ├── App.razor │ │ │ └── App.razor.css │ │ ├── Views │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ └── _ViewImports.cshtml │ │ └── wwwroot │ │ │ └── js │ │ │ ├── project-transitive-dep.js │ │ │ └── project-transitive-dep.v4.js │ ├── PackageLibraryDirectDependency │ │ ├── Components │ │ │ ├── App.razor │ │ │ └── App.razor.css │ │ ├── PackageLibraryDirectDependency.csproj │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ └── js │ │ │ └── pkg-direct-dep.js │ └── PackageLibraryTransitiveDependency │ │ ├── PackageLibraryTransitiveDependency.csproj │ │ └── wwwroot │ │ └── js │ │ └── pkg-transitive-dep.js │ ├── RazorClassLibrary │ ├── Class1.cs │ ├── ClassLibrary.csproj │ ├── Components │ │ ├── App.razor │ │ └── App.razor.css │ ├── Views │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ └── _ViewImports.cshtml │ └── wwwroot │ │ └── js │ │ ├── project-transitive-dep.js │ │ └── project-transitive-dep.v4.js │ ├── RazorComponentApp │ ├── ComponentApp.csproj │ ├── Components │ │ ├── App.razor │ │ ├── Pages │ │ │ ├── Counter.razor │ │ │ ├── Counter.razor.css │ │ │ ├── FetchData.razor │ │ │ ├── Index.razor │ │ │ ├── Index.razor.css │ │ │ └── _Imports.razor │ │ ├── Shared │ │ │ ├── MainLayout.razor │ │ │ └── NavMenu.razor │ │ └── _Imports.razor │ ├── Program.cs │ └── Services │ │ ├── WeatherForecast.cs │ │ └── WeatherForecastService.cs │ ├── RazorComponentLibrary │ ├── Class1.cs │ ├── ComponentLibrary.csproj │ ├── GenericComponent.razor │ └── MyComponent.razor │ ├── RazorMvcWithComponents │ ├── Components │ │ ├── Counter.razor │ │ └── Counter.razor.css │ ├── Models │ │ └── ErrorViewModel.cs │ ├── MvcWithComponents.csproj │ ├── Program.cs │ ├── SimpleTagHelper.cs │ ├── Test.cs │ ├── TestComponent.razor │ └── Views │ │ ├── Home │ │ ├── FileName.cshtml │ │ ├── Index.cshtml │ │ └── Index.cshtml.css │ │ ├── Shared │ │ └── NavMenu.razor │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── RazorSimpleMvc │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SimpleMvc.csproj │ ├── SimpleTagHelper.cs │ ├── Views │ │ ├── Home │ │ │ ├── #F{}i+l!e.cshtml │ │ │ ├── About.cshtml │ │ │ ├── About.cshtml.css │ │ │ ├── Contact.cshtml │ │ │ ├── Contact.cshtml.css │ │ │ ├── Index.cshtml │ │ │ └── Index.cshtml.css │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ └── js │ │ └── SimpleMvc.js │ ├── RazorSimpleMvc21 │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── SimpleMvc21.csproj │ ├── SimpleTagHelper.cs │ └── Views │ │ ├── Home │ │ ├── About.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── RazorSimpleMvc21NetFx │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── SimpleMvc21NetFx.csproj │ ├── SimpleTagHelper.cs │ └── Views │ │ ├── Home │ │ ├── About.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── RazorSimpleMvc22 │ ├── Program.cs │ ├── SimpleMvc22.csproj │ ├── SimpleTagHelper.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── RazorSimpleMvc31 │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── SimpleMvc31.csproj │ ├── SimpleTagHelper.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── RazorSimpleMvc50 │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── SimpleMvc50.csproj │ ├── SimpleTagHelper.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── RazorSimplePages │ ├── LinkedDir │ │ ├── LinkedErrorFile.cshtml │ │ ├── LinkedFile.cshtml │ │ ├── LinkedFile2.cshtml │ │ └── LinkedFile3.cshtml │ └── SimplePages │ │ ├── Areas │ │ └── Products │ │ │ └── Pages │ │ │ ├── Index.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Pages │ │ ├── About.cshtml │ │ ├── About.cshtml.cs │ │ ├── Contact.cshtml │ │ ├── Contact.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ └── SimplePages.csproj │ └── Razorblazor31 │ ├── App.razor │ ├── Pages │ ├── Index.razor │ └── _Host.cshtml │ ├── Program.cs │ ├── Shared │ ├── MainLayout.razor │ └── NavMenu.razor │ ├── _Imports.razor │ └── blazor31.csproj ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X ├── pack │ └── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Internal.Transport.csproj ├── src │ ├── CSharpIdentifier.cs │ ├── ExtensionInitializer.cs │ ├── IInjectTargetExtension.cs │ ├── IViewComponentTagHelperTargetExtension.cs │ ├── InjectDirective.cs │ ├── InjectIntermediateNode.cs │ ├── InjectTargetExtension.cs │ ├── LegacySectionTargetExtension.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.csproj │ ├── ModelDirective.cs │ ├── ModelExpressionPass.cs │ ├── MvcImportProjectFeature.cs │ ├── MvcViewDocumentClassifierPass.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RazorExtensions.cs │ ├── RazorExtensionsDiagnosticFactory.cs │ ├── Resources.resx │ ├── TagHelperDescriptorExtensions.cs │ ├── ViewComponentResources.resx │ ├── ViewComponentTagHelperConventions.cs │ ├── ViewComponentTagHelperDescriptorFactory.cs │ ├── ViewComponentTagHelperDescriptorProvider.cs │ ├── ViewComponentTagHelperIntermediateNode.cs │ ├── ViewComponentTagHelperMetadata.cs │ ├── ViewComponentTagHelperPass.cs │ ├── ViewComponentTagHelperTargetExtension.cs │ ├── ViewComponentTypeVisitor.cs │ └── ViewComponentTypes.cs └── test │ ├── InjectDirectiveTest.cs │ ├── InjectTargetExtensionTest.cs │ ├── IntegrationTests │ └── CodeGenerationIntegrationTest.cs │ ├── LegacySectionTargetExtensionTest.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test.csproj │ ├── ModelDirectiveTest.cs │ ├── ModelExpressionPassTest.cs │ ├── MvcImportProjectFeatureTest.cs │ ├── MvcShim.cs │ ├── MvcViewDocumentClassifierPassTest.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SourceMappingsSerializer.cs │ ├── TagHelperDescriptorExtensionsTest.cs │ ├── TestFiles │ └── IntegrationTests │ │ └── CodeGenerationIntegrationTest │ │ ├── Basic.cshtml │ │ ├── Basic_DesignTime.codegen.cs │ │ ├── Basic_DesignTime.ir.txt │ │ ├── Basic_DesignTime.mappings.txt │ │ ├── Basic_Runtime.codegen.cs │ │ ├── Basic_Runtime.ir.txt │ │ ├── IncompleteDirectives.cshtml │ │ ├── IncompleteDirectives_DesignTime.codegen.cs │ │ ├── IncompleteDirectives_DesignTime.diagnostics.txt │ │ ├── IncompleteDirectives_DesignTime.ir.txt │ │ ├── IncompleteDirectives_DesignTime.mappings.txt │ │ ├── IncompleteDirectives_Runtime.codegen.cs │ │ ├── IncompleteDirectives_Runtime.diagnostics.txt │ │ ├── IncompleteDirectives_Runtime.ir.txt │ │ ├── InheritsViewModel.cshtml │ │ ├── InheritsViewModel_DesignTime.codegen.cs │ │ ├── InheritsViewModel_DesignTime.ir.txt │ │ ├── InheritsViewModel_DesignTime.mappings.txt │ │ ├── InheritsViewModel_Runtime.codegen.cs │ │ ├── InheritsViewModel_Runtime.ir.txt │ │ ├── InheritsWithViewImports.cshtml │ │ ├── InheritsWithViewImports_DesignTime.codegen.cs │ │ ├── InheritsWithViewImports_DesignTime.ir.txt │ │ ├── InheritsWithViewImports_DesignTime.mappings.txt │ │ ├── InheritsWithViewImports_Runtime.codegen.cs │ │ ├── InheritsWithViewImports_Runtime.ir.txt │ │ ├── Inject.cshtml │ │ ├── InjectWithModel.cshtml │ │ ├── InjectWithModel_DesignTime.codegen.cs │ │ ├── InjectWithModel_DesignTime.ir.txt │ │ ├── InjectWithModel_DesignTime.mappings.txt │ │ ├── InjectWithModel_Runtime.codegen.cs │ │ ├── InjectWithModel_Runtime.ir.txt │ │ ├── InjectWithSemicolon.cshtml │ │ ├── InjectWithSemicolon_DesignTime.codegen.cs │ │ ├── InjectWithSemicolon_DesignTime.ir.txt │ │ ├── InjectWithSemicolon_DesignTime.mappings.txt │ │ ├── InjectWithSemicolon_Runtime.codegen.cs │ │ ├── InjectWithSemicolon_Runtime.ir.txt │ │ ├── Inject_DesignTime.codegen.cs │ │ ├── Inject_DesignTime.ir.txt │ │ ├── Inject_DesignTime.mappings.txt │ │ ├── Inject_Runtime.codegen.cs │ │ ├── Inject_Runtime.ir.txt │ │ ├── InvalidNamespaceAtEOF.cshtml │ │ ├── InvalidNamespaceAtEOF_DesignTime.codegen.cs │ │ ├── InvalidNamespaceAtEOF_DesignTime.diagnostics.txt │ │ ├── InvalidNamespaceAtEOF_DesignTime.ir.txt │ │ ├── InvalidNamespaceAtEOF_DesignTime.mappings.txt │ │ ├── InvalidNamespaceAtEOF_Runtime.codegen.cs │ │ ├── InvalidNamespaceAtEOF_Runtime.diagnostics.txt │ │ ├── InvalidNamespaceAtEOF_Runtime.ir.txt │ │ ├── Model.cshtml │ │ ├── ModelExpressionTagHelper.cshtml │ │ ├── ModelExpressionTagHelper_DesignTime.codegen.cs │ │ ├── ModelExpressionTagHelper_DesignTime.ir.txt │ │ ├── ModelExpressionTagHelper_DesignTime.mappings.txt │ │ ├── ModelExpressionTagHelper_Runtime.codegen.cs │ │ ├── ModelExpressionTagHelper_Runtime.ir.txt │ │ ├── Model_DesignTime.codegen.cs │ │ ├── Model_DesignTime.ir.txt │ │ ├── Model_DesignTime.mappings.txt │ │ ├── Model_Runtime.codegen.cs │ │ ├── Model_Runtime.ir.txt │ │ ├── MultipleModels.cshtml │ │ ├── MultipleModels_DesignTime.codegen.cs │ │ ├── MultipleModels_DesignTime.diagnostics.txt │ │ ├── MultipleModels_DesignTime.ir.txt │ │ ├── MultipleModels_DesignTime.mappings.txt │ │ ├── Sections.cshtml │ │ ├── Sections_DesignTime.codegen.cs │ │ ├── Sections_DesignTime.ir.txt │ │ ├── Sections_DesignTime.mappings.txt │ │ ├── ViewComponentTagHelper.cshtml │ │ ├── ViewComponentTagHelper_DesignTime.codegen.cs │ │ ├── ViewComponentTagHelper_DesignTime.ir.txt │ │ ├── ViewComponentTagHelper_DesignTime.mappings.txt │ │ ├── ViewComponentTagHelper_Runtime.codegen.cs │ │ ├── ViewComponentTagHelper_Runtime.ir.txt │ │ ├── _ViewImports.cshtml │ │ ├── _ViewImports_DesignTime.codegen.cs │ │ ├── _ViewImports_DesignTime.ir.txt │ │ ├── _ViewImports_DesignTime.mappings.txt │ │ ├── _ViewImports_Runtime.codegen.cs │ │ └── _ViewImports_Runtime.ir.txt │ ├── ViewComponentTagHelperDescriptorFactoryTest.cs │ ├── ViewComponentTagHelperDescriptorProviderTest.cs │ ├── ViewComponentTagHelperPassTest.cs │ ├── ViewComponentTagHelperTargetExtensionTest.cs │ ├── ViewComponentTypeVisitorTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X ├── pack │ └── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Internal.Transport.csproj ├── src │ ├── AssemblyAttributeInjectionPass.cs │ ├── CSharpIdentifier.cs │ ├── ExtensionInitializer.cs │ ├── IInjectTargetExtension.cs │ ├── IViewComponentTagHelperTargetExtension.cs │ ├── InjectDirective.cs │ ├── InjectIntermediateNode.cs │ ├── InjectTargetExtension.cs │ ├── InstrumentationPass.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.csproj │ ├── ModelDirective.cs │ ├── ModelExpressionPass.cs │ ├── MvcImportProjectFeature.cs │ ├── MvcViewDocumentClassifierPass.cs │ ├── NamespaceDirective.cs │ ├── PageDirective.cs │ ├── PagesPropertyInjectionPass.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RazorExtensions.cs │ ├── RazorExtensionsDiagnosticFactory.cs │ ├── RazorPageDocumentClassifierPass.cs │ ├── Resources.resx │ ├── TagHelperDescriptorExtensions.cs │ ├── ViewComponentResources.resx │ ├── ViewComponentTagHelperConventions.cs │ ├── ViewComponentTagHelperDescriptorFactory.cs │ ├── ViewComponentTagHelperDescriptorProvider.cs │ ├── ViewComponentTagHelperIntermediateNode.cs │ ├── ViewComponentTagHelperMetadata.cs │ ├── ViewComponentTagHelperPass.cs │ ├── ViewComponentTagHelperTargetExtension.cs │ ├── ViewComponentTypeVisitor.cs │ ├── ViewComponentTypes.cs │ ├── baseline.netcore.json │ └── baseline.netframework.json └── test │ ├── AssemblyAttributeInjectionPassTest.cs │ ├── InjectDirectiveTest.cs │ ├── InjectTargetExtensionTest.cs │ ├── InstrumentationPassTest.cs │ ├── IntegrationTests │ ├── CodeGenerationIntegrationTest.cs │ └── InstrumentationPassIntegrationTest.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test.csproj │ ├── ModelDirectiveTest.cs │ ├── ModelExpressionPassTest.cs │ ├── MvcImportProjectFeatureTest.cs │ ├── MvcShim.cs │ ├── MvcViewDocumentClassifierPassTest.cs │ ├── NamespaceDirectiveTest.cs │ ├── PageDirectiveTest.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RazorPageDocumentClassifierPassTest.cs │ ├── SourceMappingsSerializer.cs │ ├── TagHelperDescriptorExtensionsTest.cs │ ├── TestFiles │ └── IntegrationTests │ │ ├── CodeGenerationIntegrationTest │ │ ├── Basic.cshtml │ │ ├── Basic_DesignTime.codegen.cs │ │ ├── Basic_DesignTime.ir.txt │ │ ├── Basic_DesignTime.mappings.txt │ │ ├── Basic_Runtime.codegen.cs │ │ ├── Basic_Runtime.ir.txt │ │ ├── IncompleteDirectives.cshtml │ │ ├── IncompleteDirectives_DesignTime.codegen.cs │ │ ├── IncompleteDirectives_DesignTime.diagnostics.txt │ │ ├── IncompleteDirectives_DesignTime.ir.txt │ │ ├── IncompleteDirectives_DesignTime.mappings.txt │ │ ├── IncompleteDirectives_Runtime.codegen.cs │ │ ├── IncompleteDirectives_Runtime.diagnostics.txt │ │ ├── IncompleteDirectives_Runtime.ir.txt │ │ ├── InheritsViewModel.cshtml │ │ ├── InheritsViewModel_DesignTime.codegen.cs │ │ ├── InheritsViewModel_DesignTime.ir.txt │ │ ├── InheritsViewModel_DesignTime.mappings.txt │ │ ├── InheritsViewModel_Runtime.codegen.cs │ │ ├── InheritsViewModel_Runtime.ir.txt │ │ ├── InheritsWithViewImports.cshtml │ │ ├── InheritsWithViewImports_DesignTime.codegen.cs │ │ ├── InheritsWithViewImports_DesignTime.ir.txt │ │ ├── InheritsWithViewImports_DesignTime.mappings.txt │ │ ├── InheritsWithViewImports_Runtime.codegen.cs │ │ ├── InheritsWithViewImports_Runtime.ir.txt │ │ ├── Inject.cshtml │ │ ├── InjectWithModel.cshtml │ │ ├── InjectWithModel_DesignTime.codegen.cs │ │ ├── InjectWithModel_DesignTime.ir.txt │ │ ├── InjectWithModel_DesignTime.mappings.txt │ │ ├── InjectWithModel_Runtime.codegen.cs │ │ ├── InjectWithModel_Runtime.ir.txt │ │ ├── InjectWithSemicolon.cshtml │ │ ├── InjectWithSemicolon_DesignTime.codegen.cs │ │ ├── InjectWithSemicolon_DesignTime.ir.txt │ │ ├── InjectWithSemicolon_DesignTime.mappings.txt │ │ ├── InjectWithSemicolon_Runtime.codegen.cs │ │ ├── InjectWithSemicolon_Runtime.ir.txt │ │ ├── Inject_DesignTime.codegen.cs │ │ ├── Inject_DesignTime.ir.txt │ │ ├── Inject_DesignTime.mappings.txt │ │ ├── Inject_Runtime.codegen.cs │ │ ├── Inject_Runtime.ir.txt │ │ ├── InvalidNamespaceAtEOF.cshtml │ │ ├── InvalidNamespaceAtEOF_DesignTime.codegen.cs │ │ ├── InvalidNamespaceAtEOF_DesignTime.diagnostics.txt │ │ ├── InvalidNamespaceAtEOF_DesignTime.ir.txt │ │ ├── InvalidNamespaceAtEOF_DesignTime.mappings.txt │ │ ├── InvalidNamespaceAtEOF_Runtime.codegen.cs │ │ ├── InvalidNamespaceAtEOF_Runtime.diagnostics.txt │ │ ├── InvalidNamespaceAtEOF_Runtime.ir.txt │ │ ├── MalformedPageDirective.cshtml │ │ ├── MalformedPageDirective_DesignTime.codegen.cs │ │ ├── MalformedPageDirective_DesignTime.diagnostics.txt │ │ ├── MalformedPageDirective_DesignTime.ir.txt │ │ ├── MalformedPageDirective_DesignTime.mappings.txt │ │ ├── MalformedPageDirective_Runtime.codegen.cs │ │ ├── MalformedPageDirective_Runtime.diagnostics.txt │ │ ├── MalformedPageDirective_Runtime.ir.txt │ │ ├── Model.cshtml │ │ ├── ModelExpressionTagHelper.cshtml │ │ ├── ModelExpressionTagHelper_DesignTime.codegen.cs │ │ ├── ModelExpressionTagHelper_DesignTime.ir.txt │ │ ├── ModelExpressionTagHelper_DesignTime.mappings.txt │ │ ├── ModelExpressionTagHelper_Runtime.codegen.cs │ │ ├── ModelExpressionTagHelper_Runtime.ir.txt │ │ ├── Model_DesignTime.codegen.cs │ │ ├── Model_DesignTime.ir.txt │ │ ├── Model_DesignTime.mappings.txt │ │ ├── Model_Runtime.codegen.cs │ │ ├── Model_Runtime.ir.txt │ │ ├── MultipleModels.cshtml │ │ ├── MultipleModels_DesignTime.codegen.cs │ │ ├── MultipleModels_DesignTime.diagnostics.txt │ │ ├── MultipleModels_DesignTime.ir.txt │ │ ├── MultipleModels_DesignTime.mappings.txt │ │ ├── PageWithNamespace.cshtml │ │ ├── PageWithNamespace_DesignTime.codegen.cs │ │ ├── PageWithNamespace_DesignTime.ir.txt │ │ ├── PageWithNamespace_DesignTime.mappings.txt │ │ ├── PageWithNamespace_Runtime.codegen.cs │ │ ├── PageWithNamespace_Runtime.ir.txt │ │ ├── RazorPageWithNoLeadingPageDirective.cshtml │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.codegen.cs │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.diagnostics.txt │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.ir.txt │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.mappings.txt │ │ ├── RazorPageWithNoLeadingPageDirective_Runtime.codegen.cs │ │ ├── RazorPageWithNoLeadingPageDirective_Runtime.diagnostics.txt │ │ ├── RazorPageWithNoLeadingPageDirective_Runtime.ir.txt │ │ ├── RazorPages.cshtml │ │ ├── RazorPagesWithRouteTemplate.cshtml │ │ ├── RazorPagesWithRouteTemplate_DesignTime.codegen.cs │ │ ├── RazorPagesWithRouteTemplate_DesignTime.ir.txt │ │ ├── RazorPagesWithRouteTemplate_DesignTime.mappings.txt │ │ ├── RazorPagesWithRouteTemplate_Runtime.codegen.cs │ │ ├── RazorPagesWithRouteTemplate_Runtime.ir.txt │ │ ├── RazorPagesWithoutModel.cshtml │ │ ├── RazorPagesWithoutModel_DesignTime.codegen.cs │ │ ├── RazorPagesWithoutModel_DesignTime.ir.txt │ │ ├── RazorPagesWithoutModel_DesignTime.mappings.txt │ │ ├── RazorPagesWithoutModel_Runtime.codegen.cs │ │ ├── RazorPagesWithoutModel_Runtime.ir.txt │ │ ├── RazorPages_DesignTime.codegen.cs │ │ ├── RazorPages_DesignTime.ir.txt │ │ ├── RazorPages_DesignTime.mappings.txt │ │ ├── RazorPages_Runtime.codegen.cs │ │ ├── RazorPages_Runtime.ir.txt │ │ ├── Sections.cshtml │ │ ├── Sections_DesignTime.codegen.cs │ │ ├── Sections_DesignTime.ir.txt │ │ ├── Sections_DesignTime.mappings.txt │ │ ├── Sections_Runtime.codegen.cs │ │ ├── Sections_Runtime.ir.txt │ │ ├── UsingDirectives.cshtml │ │ ├── UsingDirectives_DesignTime.codegen.cs │ │ ├── UsingDirectives_DesignTime.ir.txt │ │ ├── UsingDirectives_DesignTime.mappings.txt │ │ ├── UsingDirectives_Runtime.codegen.cs │ │ ├── UsingDirectives_Runtime.ir.txt │ │ ├── ViewComponentTagHelper.cshtml │ │ ├── ViewComponentTagHelper_DesignTime.codegen.cs │ │ ├── ViewComponentTagHelper_DesignTime.ir.txt │ │ ├── ViewComponentTagHelper_DesignTime.mappings.txt │ │ ├── ViewComponentTagHelper_Runtime.codegen.cs │ │ ├── ViewComponentTagHelper_Runtime.ir.txt │ │ ├── ViewWithNamespace.cshtml │ │ ├── ViewWithNamespace_DesignTime.codegen.cs │ │ ├── ViewWithNamespace_DesignTime.ir.txt │ │ ├── ViewWithNamespace_DesignTime.mappings.txt │ │ ├── ViewWithNamespace_Runtime.codegen.cs │ │ ├── ViewWithNamespace_Runtime.ir.txt │ │ ├── _ViewImports.cshtml │ │ ├── _ViewImports_DesignTime.codegen.cs │ │ ├── _ViewImports_DesignTime.ir.txt │ │ ├── _ViewImports_DesignTime.mappings.txt │ │ ├── _ViewImports_Runtime.codegen.cs │ │ └── _ViewImports_Runtime.ir.txt │ │ └── InstrumentationPassIntegrationTest │ │ ├── BasicTest.codegen.cs │ │ ├── BasicTest.cshtml │ │ └── BasicTest.ir.txt │ ├── ViewComponentTagHelperDescriptorFactoryTest.cs │ ├── ViewComponentTagHelperDescriptorProviderTest.cs │ ├── ViewComponentTagHelperPassTest.cs │ ├── ViewComponentTagHelperTargetExtensionTest.cs │ ├── ViewComponentTypeVisitorTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Mvc.Razor.Extensions ├── src │ ├── CreateNewOnMetadataUpdateAttributePass.cs │ ├── ExtensionInitializer.cs │ ├── IInjectTargetExtension.cs │ ├── IViewComponentTagHelperTargetExtension.cs │ ├── InjectDirective.cs │ ├── InjectIntermediateNode.cs │ ├── InjectTargetExtension.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.csproj │ ├── ModelDirective.cs │ ├── ModelExpressionPass.cs │ ├── MvcImportProjectFeature.cs │ ├── MvcViewDocumentClassifierPass.cs │ ├── PageDirective.cs │ ├── PagesPropertyInjectionPass.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PublicAPI.Shipped.txt │ ├── PublicAPI.Unshipped.txt │ ├── RazorExtensions.cs │ ├── RazorExtensionsDiagnosticFactory.cs │ ├── RazorExtensionsResources.resx │ ├── RazorPageDocumentClassifierPass.cs │ ├── TagHelperDescriptorExtensions.cs │ ├── ViewComponentTagHelperConventions.cs │ ├── ViewComponentTagHelperDescriptorFactory.cs │ ├── ViewComponentTagHelperDescriptorProvider.cs │ ├── ViewComponentTagHelperIntermediateNode.cs │ ├── ViewComponentTagHelperMetadata.cs │ ├── ViewComponentTagHelperPass.cs │ ├── ViewComponentTagHelperTargetExtension.cs │ ├── ViewComponentTypeVisitor.cs │ ├── ViewComponentTypes.cs │ ├── baseline.netcore.json │ ├── baseline.netframework.json │ ├── breakingchanges.netcore.json │ └── breakingchanges.netframework.json └── test │ ├── ConsolidatedMvcViewDocumentClassifierPassTest.cs │ ├── CreateNewOnMetadataUpdateAttributePassTest.cs │ ├── InjectDirectiveTest.cs │ ├── InjectTargetExtensionTest.cs │ ├── IntegrationTests │ └── CodeGenerationIntegrationTest.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Test.csproj │ ├── ModelDirectiveTest.cs │ ├── ModelExpressionPassTest.cs │ ├── MvcImportProjectFeatureTest.cs │ ├── MvcShim.cs │ ├── MvcViewDocumentClassifierPassTest.cs │ ├── PageDirectiveTest.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RazorPageDocumentClassifierPassTest.cs │ ├── SourceMappingsSerializer.cs │ ├── TagHelperDescriptorExtensionsTest.cs │ ├── TestFiles │ └── IntegrationTests │ │ └── CodeGenerationIntegrationTest │ │ ├── AttributeDirectiveWithViewImports.cshtml │ │ ├── AttributeDirectiveWithViewImports_DesignTime.codegen.cs │ │ ├── AttributeDirectiveWithViewImports_DesignTime.codegen.html │ │ ├── AttributeDirectiveWithViewImports_DesignTime.ir.txt │ │ ├── AttributeDirectiveWithViewImports_DesignTime.mappings.txt │ │ ├── AttributeDirectiveWithViewImports_Runtime.codegen.cs │ │ ├── AttributeDirectiveWithViewImports_Runtime.ir.txt │ │ ├── Basic.cshtml │ │ ├── BasicComponent.cshtml │ │ ├── BasicComponent_DesignTime.codegen.cs │ │ ├── BasicComponent_DesignTime.codegen.html │ │ ├── BasicComponent_DesignTime.ir.txt │ │ ├── BasicComponent_DesignTime.mappings.txt │ │ ├── BasicComponent_Runtime.codegen.cs │ │ ├── BasicComponent_Runtime.ir.txt │ │ ├── Basic_DesignTime.codegen.cs │ │ ├── Basic_DesignTime.codegen.html │ │ ├── Basic_DesignTime.ir.txt │ │ ├── Basic_DesignTime.mappings.txt │ │ ├── Basic_Runtime.codegen.cs │ │ ├── Basic_Runtime.ir.txt │ │ ├── IncompleteDirectives.cshtml │ │ ├── IncompleteDirectives_DesignTime.codegen.cs │ │ ├── IncompleteDirectives_DesignTime.codegen.html │ │ ├── IncompleteDirectives_DesignTime.diagnostics.txt │ │ ├── IncompleteDirectives_DesignTime.ir.txt │ │ ├── IncompleteDirectives_DesignTime.mappings.txt │ │ ├── IncompleteDirectives_Runtime.codegen.cs │ │ ├── IncompleteDirectives_Runtime.diagnostics.txt │ │ ├── IncompleteDirectives_Runtime.ir.txt │ │ ├── InheritsViewModel.cshtml │ │ ├── InheritsViewModel_DesignTime.codegen.cs │ │ ├── InheritsViewModel_DesignTime.codegen.html │ │ ├── InheritsViewModel_DesignTime.ir.txt │ │ ├── InheritsViewModel_DesignTime.mappings.txt │ │ ├── InheritsViewModel_Runtime.codegen.cs │ │ ├── InheritsViewModel_Runtime.ir.txt │ │ ├── InheritsWithViewImports.cshtml │ │ ├── InheritsWithViewImports_DesignTime.codegen.cs │ │ ├── InheritsWithViewImports_DesignTime.codegen.html │ │ ├── InheritsWithViewImports_DesignTime.ir.txt │ │ ├── InheritsWithViewImports_DesignTime.mappings.txt │ │ ├── InheritsWithViewImports_Runtime.codegen.cs │ │ ├── InheritsWithViewImports_Runtime.ir.txt │ │ ├── Inject.cshtml │ │ ├── InjectWithModel.cshtml │ │ ├── InjectWithModel_DesignTime.codegen.cs │ │ ├── InjectWithModel_DesignTime.codegen.html │ │ ├── InjectWithModel_DesignTime.ir.txt │ │ ├── InjectWithModel_DesignTime.mappings.txt │ │ ├── InjectWithModel_Runtime.codegen.cs │ │ ├── InjectWithModel_Runtime.ir.txt │ │ ├── InjectWithSemicolon.cshtml │ │ ├── InjectWithSemicolon_DesignTime.codegen.cs │ │ ├── InjectWithSemicolon_DesignTime.codegen.html │ │ ├── InjectWithSemicolon_DesignTime.ir.txt │ │ ├── InjectWithSemicolon_DesignTime.mappings.txt │ │ ├── InjectWithSemicolon_Runtime.codegen.cs │ │ ├── InjectWithSemicolon_Runtime.ir.txt │ │ ├── Inject_DesignTime.codegen.cs │ │ ├── Inject_DesignTime.codegen.html │ │ ├── Inject_DesignTime.ir.txt │ │ ├── Inject_DesignTime.mappings.txt │ │ ├── Inject_Runtime.codegen.cs │ │ ├── Inject_Runtime.ir.txt │ │ ├── InvalidNamespaceAtEOF.cshtml │ │ ├── InvalidNamespaceAtEOF_DesignTime.codegen.cs │ │ ├── InvalidNamespaceAtEOF_DesignTime.codegen.html │ │ ├── InvalidNamespaceAtEOF_DesignTime.diagnostics.txt │ │ ├── InvalidNamespaceAtEOF_DesignTime.ir.txt │ │ ├── InvalidNamespaceAtEOF_DesignTime.mappings.txt │ │ ├── InvalidNamespaceAtEOF_Runtime.codegen.cs │ │ ├── InvalidNamespaceAtEOF_Runtime.diagnostics.txt │ │ ├── InvalidNamespaceAtEOF_Runtime.ir.txt │ │ ├── MalformedPageDirective.cshtml │ │ ├── MalformedPageDirective_DesignTime.codegen.cs │ │ ├── MalformedPageDirective_DesignTime.codegen.html │ │ ├── MalformedPageDirective_DesignTime.diagnostics.txt │ │ ├── MalformedPageDirective_DesignTime.ir.txt │ │ ├── MalformedPageDirective_DesignTime.mappings.txt │ │ ├── MalformedPageDirective_Runtime.codegen.cs │ │ ├── MalformedPageDirective_Runtime.diagnostics.txt │ │ ├── MalformedPageDirective_Runtime.ir.txt │ │ ├── Model.cshtml │ │ ├── ModelExpressionTagHelper.cshtml │ │ ├── ModelExpressionTagHelper_DesignTime.codegen.cs │ │ ├── ModelExpressionTagHelper_DesignTime.codegen.html │ │ ├── ModelExpressionTagHelper_DesignTime.ir.txt │ │ ├── ModelExpressionTagHelper_DesignTime.mappings.txt │ │ ├── ModelExpressionTagHelper_Runtime.codegen.cs │ │ ├── ModelExpressionTagHelper_Runtime.ir.txt │ │ ├── Model_DesignTime.codegen.cs │ │ ├── Model_DesignTime.codegen.html │ │ ├── Model_DesignTime.ir.txt │ │ ├── Model_DesignTime.mappings.txt │ │ ├── Model_Runtime.codegen.cs │ │ ├── Model_Runtime.ir.txt │ │ ├── MultipleModels.cshtml │ │ ├── MultipleModels_DesignTime.codegen.cs │ │ ├── MultipleModels_DesignTime.codegen.html │ │ ├── MultipleModels_DesignTime.diagnostics.txt │ │ ├── MultipleModels_DesignTime.ir.txt │ │ ├── MultipleModels_DesignTime.mappings.txt │ │ ├── PageWithNamespace.cshtml │ │ ├── PageWithNamespace_DesignTime.codegen.cs │ │ ├── PageWithNamespace_DesignTime.codegen.html │ │ ├── PageWithNamespace_DesignTime.ir.txt │ │ ├── PageWithNamespace_DesignTime.mappings.txt │ │ ├── PageWithNamespace_Runtime.codegen.cs │ │ ├── PageWithNamespace_Runtime.ir.txt │ │ ├── RazorPageWithNoLeadingPageDirective.cshtml │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.codegen.cs │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.codegen.html │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.diagnostics.txt │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.ir.txt │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.mappings.txt │ │ ├── RazorPageWithNoLeadingPageDirective_Runtime.codegen.cs │ │ ├── RazorPageWithNoLeadingPageDirective_Runtime.diagnostics.txt │ │ ├── RazorPageWithNoLeadingPageDirective_Runtime.ir.txt │ │ ├── RazorPage_WithCssScope.codegen.cs │ │ ├── RazorPage_WithCssScope.ir.txt │ │ ├── RazorPages.cshtml │ │ ├── RazorPagesWithRouteTemplate.cshtml │ │ ├── RazorPagesWithRouteTemplate_DesignTime.codegen.cs │ │ ├── RazorPagesWithRouteTemplate_DesignTime.codegen.html │ │ ├── RazorPagesWithRouteTemplate_DesignTime.ir.txt │ │ ├── RazorPagesWithRouteTemplate_DesignTime.mappings.txt │ │ ├── RazorPagesWithRouteTemplate_Runtime.codegen.cs │ │ ├── RazorPagesWithRouteTemplate_Runtime.ir.txt │ │ ├── RazorPagesWithoutModel.cshtml │ │ ├── RazorPagesWithoutModel_DesignTime.codegen.cs │ │ ├── RazorPagesWithoutModel_DesignTime.codegen.html │ │ ├── RazorPagesWithoutModel_DesignTime.ir.txt │ │ ├── RazorPagesWithoutModel_DesignTime.mappings.txt │ │ ├── RazorPagesWithoutModel_Runtime.codegen.cs │ │ ├── RazorPagesWithoutModel_Runtime.ir.txt │ │ ├── RazorPages_DesignTime.codegen.cs │ │ ├── RazorPages_DesignTime.codegen.html │ │ ├── RazorPages_DesignTime.ir.txt │ │ ├── RazorPages_DesignTime.mappings.txt │ │ ├── RazorPages_Runtime.codegen.cs │ │ ├── RazorPages_Runtime.ir.txt │ │ ├── RazorView_Layout_WithCssScope.codegen.cs │ │ ├── RazorView_Layout_WithCssScope.ir.txt │ │ ├── RazorView_WithCssScope.codegen.cs │ │ ├── RazorView_WithCssScope.ir.txt │ │ ├── RazorView_WithNonNullableModel_NullableContextEnabled.codegen.cs │ │ ├── RazorView_WithNonNullableModel_NullableContextEnabled.ir.txt │ │ ├── RazorView_WithNullableBaseType_NullableContexEnabled.codegen.cs │ │ ├── RazorView_WithNullableBaseType_NullableContexEnabled.ir.txt │ │ ├── RazorView_WithNullableModel_NullableContextEnabled.codegen.cs │ │ ├── RazorView_WithNullableModel_NullableContextEnabled.ir.txt │ │ ├── RazorView_WithNullableModel_NullableContextNotEnabled.codegen.cs │ │ ├── RazorView_WithNullableModel_NullableContextNotEnabled.ir.txt │ │ ├── Sections.cshtml │ │ ├── Sections_DesignTime.codegen.cs │ │ ├── Sections_DesignTime.codegen.html │ │ ├── Sections_DesignTime.ir.txt │ │ ├── Sections_DesignTime.mappings.txt │ │ ├── Sections_Runtime.codegen.cs │ │ ├── Sections_Runtime.ir.txt │ │ ├── UsingDirectives.cshtml │ │ ├── UsingDirectives_DesignTime.codegen.cs │ │ ├── UsingDirectives_DesignTime.codegen.html │ │ ├── UsingDirectives_DesignTime.ir.txt │ │ ├── UsingDirectives_DesignTime.mappings.txt │ │ ├── UsingDirectives_Runtime.codegen.cs │ │ ├── UsingDirectives_Runtime.ir.txt │ │ ├── ViewComponentTagHelper.cshtml │ │ ├── ViewComponentTagHelperOptionalParam.cshtml │ │ ├── ViewComponentTagHelperOptionalParam_Runtime.codegen.cs │ │ ├── ViewComponentTagHelperOptionalParam_Runtime.ir.txt │ │ ├── ViewComponentTagHelper_DesignTime.codegen.cs │ │ ├── ViewComponentTagHelper_DesignTime.codegen.html │ │ ├── ViewComponentTagHelper_DesignTime.ir.txt │ │ ├── ViewComponentTagHelper_DesignTime.mappings.txt │ │ ├── ViewComponentTagHelper_Runtime.codegen.cs │ │ ├── ViewComponentTagHelper_Runtime.ir.txt │ │ ├── ViewWithNamespace.cshtml │ │ ├── ViewWithNamespace_DesignTime.codegen.cs │ │ ├── ViewWithNamespace_DesignTime.codegen.html │ │ ├── ViewWithNamespace_DesignTime.ir.txt │ │ ├── ViewWithNamespace_DesignTime.mappings.txt │ │ ├── ViewWithNamespace_Runtime.codegen.cs │ │ ├── ViewWithNamespace_Runtime.ir.txt │ │ ├── _ViewImports.cshtml │ │ ├── _ViewImports_DesignTime.codegen.cs │ │ ├── _ViewImports_DesignTime.codegen.html │ │ ├── _ViewImports_DesignTime.ir.txt │ │ ├── _ViewImports_DesignTime.mappings.txt │ │ ├── _ViewImports_Runtime.codegen.cs │ │ └── _ViewImports_Runtime.ir.txt │ ├── ViewComponentTagHelperDescriptorFactoryTest.cs │ ├── ViewComponentTagHelperDescriptorProviderTest.cs │ ├── ViewComponentTagHelperPassTest.cs │ ├── ViewComponentTagHelperTargetExtensionTest.cs │ ├── ViewComponentTypeVisitorTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Language ├── src │ ├── AllowedChildTagDescriptor.cs │ ├── AllowedChildTagDescriptorBuilder.cs │ ├── AllowedChildTagDescriptorComparer.cs │ ├── AssemblyExtension.cs │ ├── AttributeStructure.cs │ ├── BoundAttributeDescriptor.cs │ ├── BoundAttributeDescriptorBuilder.cs │ ├── BoundAttributeDescriptorBuilderExtensions.cs │ ├── BoundAttributeDescriptorComparer.cs │ ├── BoundAttributeDescriptorExtensions.cs │ ├── BoundAttributeParameterDescriptor.cs │ ├── BoundAttributeParameterDescriptorBuilder.cs │ ├── BoundAttributeParameterDescriptorComparer.cs │ ├── CSharpIdentifier.cs │ ├── Checksum.cs │ ├── ClassifiedSpanVisitor.cs │ ├── CodeGeneration │ │ ├── CodeRenderingContext.cs │ │ ├── CodeTarget.cs │ │ ├── CodeTargetBuilder.cs │ │ ├── CodeWriter.cs │ │ ├── CodeWriterExtensions.cs │ │ ├── DefaultCodeRenderingContext.cs │ │ ├── DefaultCodeTarget.cs │ │ ├── DefaultCodeTargetBuilder.cs │ │ ├── DefaultDocumentWriter.cs │ │ ├── DesignTimeNodeWriter.cs │ │ ├── DocumentWriter.cs │ │ ├── ICodeTargetExtension.cs │ │ ├── IntermediateNodeWriter.cs │ │ ├── LinePragma.cs │ │ ├── LiteralRuntimeNodeWriter.cs │ │ ├── RuntimeNodeWriter.cs │ │ ├── TagHelperHtmlAttributeRuntimeNodeWriter.cs │ │ └── TagHelperRenderingContext.cs │ ├── ComparerUtilities.cs │ ├── ComponentResources.resx │ ├── Components │ │ ├── ComponentBindLoweringPass.cs │ │ ├── ComponentChildContentDiagnosticPass.cs │ │ ├── ComponentCodeDirective.cs │ │ ├── ComponentCodeTarget.cs │ │ ├── ComponentComplexAttributeContentPass.cs │ │ ├── ComponentConstrainedTypeParamDirective.cs │ │ ├── ComponentCssScopePass.cs │ │ ├── ComponentDesignTimeNodeWriter.cs │ │ ├── ComponentDiagnosticFactory.cs │ │ ├── ComponentDocumentClassifierPass.cs │ │ ├── ComponentDuplicateAttributeDiagnosticPass.cs │ │ ├── ComponentEventHandlerLoweringPass.cs │ │ ├── ComponentGenericTypePass.cs │ │ ├── ComponentImportProjectFeature.cs │ │ ├── ComponentInjectDirective.cs │ │ ├── ComponentInjectDirectivePass.cs │ │ ├── ComponentInjectIntermediateNode.cs │ │ ├── ComponentIntermediateNodePassBase.cs │ │ ├── ComponentKeyLoweringPass.cs │ │ ├── ComponentLayoutDirective.cs │ │ ├── ComponentLayoutDirectivePass.cs │ │ ├── ComponentLoweringPass.cs │ │ ├── ComponentMarkupBlockPass.cs │ │ ├── ComponentMarkupEncodingPass.cs │ │ ├── ComponentMetadata.cs │ │ ├── ComponentNodeWriter.cs │ │ ├── ComponentPageDirective.cs │ │ ├── ComponentPageDirectivePass.cs │ │ ├── ComponentPreserveWhitespaceDirective.cs │ │ ├── ComponentReferenceCaptureLoweringPass.cs │ │ ├── ComponentRuntimeNodeWriter.cs │ │ ├── ComponentScriptTagPass.cs │ │ ├── ComponentSplatLoweringPass.cs │ │ ├── ComponentTemplateDiagnosticPass.cs │ │ ├── ComponentTemplateTargetExtension.cs │ │ ├── ComponentTypeParamDirective.cs │ │ ├── ComponentWhitespacePass.cs │ │ ├── ComponentsApi.cs │ │ ├── RouteAttributeExtensionNode.cs │ │ ├── ScopeStack.cs │ │ ├── TagHelperBoundAttributeDescriptorExtensions.cs │ │ ├── TagHelperDescriptorExtensions.cs │ │ └── TypeNameHelper.cs │ ├── DefaultAllowedChildTagDescriptor.cs │ ├── DefaultAllowedChildTagDescriptorBuilder.cs │ ├── DefaultBoundAttributeDescriptor.cs │ ├── DefaultBoundAttributeDescriptorBuilder.cs │ ├── DefaultBoundAttributeParameterDescriptor.cs │ ├── DefaultBoundAttributeParameterDescriptorBuilder.cs │ ├── DefaultDirectiveSyntaxTreePass.cs │ ├── DefaultDocumentClassifierPass.cs │ ├── DefaultDocumentClassifierPassFeature.cs │ ├── DefaultImportProjectFeature.cs │ ├── DefaultRazorCSharpDocument.cs │ ├── DefaultRazorCSharpLoweringPhase.cs │ ├── DefaultRazorCodeDocument.cs │ ├── DefaultRazorCodeGenerationOptions.cs │ ├── DefaultRazorCodeGenerationOptionsBuilder.cs │ ├── DefaultRazorCodeGenerationOptionsFactoryProjectFeature.cs │ ├── DefaultRazorCodeGenerationOptionsFeature.cs │ ├── DefaultRazorDiagnostic.cs │ ├── DefaultRazorDirectiveClassifierPhase.cs │ ├── DefaultRazorDirectiveFeature.cs │ ├── DefaultRazorDocumentClassifierPhase.cs │ ├── DefaultRazorEngine.cs │ ├── DefaultRazorEngineBuilder.cs │ ├── DefaultRazorHtmlDocument.cs │ ├── DefaultRazorIntermediateNodeLoweringPhase.cs │ ├── DefaultRazorOptimizationPhase.cs │ ├── DefaultRazorParserOptions.cs │ ├── DefaultRazorParserOptionsBuilder.cs │ ├── DefaultRazorParserOptionsFactoryProjectFeature.cs │ ├── DefaultRazorParserOptionsFeature.cs │ ├── DefaultRazorParsingPhase.cs │ ├── DefaultRazorProjectEngine.cs │ ├── DefaultRazorProjectEngineBuilder.cs │ ├── DefaultRazorProjectFileSystem.cs │ ├── DefaultRazorProjectItem.cs │ ├── DefaultRazorSourceLineCollection.cs │ ├── DefaultRazorSyntaxTree.cs │ ├── DefaultRazorSyntaxTreePhase.cs │ ├── DefaultRazorTagHelperBinderPhase.cs │ ├── DefaultRazorTargetExtensionFeature.cs │ ├── DefaultRequiredAttributeDescriptor.cs │ ├── DefaultRequiredAttributeDescriptorBuilder.cs │ ├── DefaultTagHelperDescriptor.cs │ ├── DefaultTagHelperDescriptorBuilder.cs │ ├── DefaultTagMatchingRuleDescriptor.cs │ ├── DefaultTagMatchingRuleDescriptorBuilder.cs │ ├── DirectiveDescriptor.cs │ ├── DirectiveDescriptorBuilderExtensions.cs │ ├── DirectiveDescriptorComparer.cs │ ├── DirectiveKind.cs │ ├── DirectiveRemovalOptimizationPass.cs │ ├── DirectiveTokenDescriptor.cs │ ├── DirectiveTokenDescriptorComparer.cs │ ├── DirectiveTokenEditHandler.cs │ ├── DirectiveTokenKind.cs │ ├── DirectiveUsage.cs │ ├── DocumentClassifierPassBase.cs │ ├── EmptyProjectFileSystem.cs │ ├── Extensions │ │ ├── AttributeDirective.cs │ │ ├── AttributeDirectivePass.cs │ │ ├── DefaultMetadataIdentifierFeature.cs │ │ ├── DefaultTagHelperBodyIntermediateNode.cs │ │ ├── DefaultTagHelperCreateIntermediateNode.cs │ │ ├── DefaultTagHelperExecuteIntermediateNode.cs │ │ ├── DefaultTagHelperHtmlAttributeIntermediateNode.cs │ │ ├── DefaultTagHelperOptimizationPass.cs │ │ ├── DefaultTagHelperPropertyIntermediateNode.cs │ │ ├── DefaultTagHelperRuntimeIntermediateNode.cs │ │ ├── DefaultTagHelperTargetExtension.cs │ │ ├── DesignTimeDirectiveIntermediateNode.cs │ │ ├── DesignTimeDirectivePass.cs │ │ ├── DesignTimeDirectiveTargetExtension.cs │ │ ├── EliminateMethodBodyPass.cs │ │ ├── FunctionsDirective.cs │ │ ├── FunctionsDirectivePass.cs │ │ ├── IDefaultTagHelperTargetExtension.cs │ │ ├── IDesignTimeDirectiveTargetExtension.cs │ │ ├── IMetadataAttributeTargetExtension.cs │ │ ├── IMetadataIdentifierFeature.cs │ │ ├── IPreallocatedAttributeTargetExtension.cs │ │ ├── IReadOnlyListExtensions.cs │ │ ├── ISectionTargetExtension.cs │ │ ├── ITemplateTargetExtension.cs │ │ ├── ImplementsDirective.cs │ │ ├── ImplementsDirectivePass.cs │ │ ├── InheritsDirective.cs │ │ ├── InheritsDirectivePass.cs │ │ ├── MetadataAttributePass.cs │ │ ├── MetadataAttributeTargetExtension.cs │ │ ├── NamespaceDirective.cs │ │ ├── PreallocatedAttributeTargetExtension.cs │ │ ├── PreallocatedTagHelperAttributeOptimizationPass.cs │ │ ├── PreallocatedTagHelperHtmlAttributeIntermediateNode.cs │ │ ├── PreallocatedTagHelperHtmlAttributeValueIntermediateNode.cs │ │ ├── PreallocatedTagHelperPropertyIntermediateNode.cs │ │ ├── PreallocatedTagHelperPropertyValueIntermediateNode.cs │ │ ├── RazorCompiledItemAttributeIntermediateNode.cs │ │ ├── RazorCompiledItemMetadataAttributeIntermediateNode.cs │ │ ├── RazorSourceChecksumAttributeIntermediateNode.cs │ │ ├── SectionDirective.cs │ │ ├── SectionDirectivePass.cs │ │ ├── SectionIntermediateNode.cs │ │ ├── SectionTargetExtension.cs │ │ ├── TemplateIntermediateNode.cs │ │ ├── TemplateTargetExtension.cs │ │ └── ViewCssScopePass.cs │ ├── FileKindDirectiveFeature.cs │ ├── FileKinds.cs │ ├── HashCodeCombiner.cs │ ├── HtmlConventions.cs │ ├── HtmlNodeOptimizationPass.cs │ ├── IConfigureRazorCodeGenerationOptionsFeature.cs │ ├── IConfigureRazorParserOptionsFeature.cs │ ├── IDirectiveDescriptorBuilder.cs │ ├── IImportProjectFeature.cs │ ├── IRazorCSharpLoweringPhase.cs │ ├── IRazorCodeGenerationOptionsFactoryProjectFeature.cs │ ├── IRazorCodeGenerationOptionsFeature.cs │ ├── IRazorDirectiveClassifierPass.cs │ ├── IRazorDirectiveClassifierPhase.cs │ ├── IRazorDirectiveFeature.cs │ ├── IRazorDocumentClassifierPass.cs │ ├── IRazorDocumentClassifierPhase.cs │ ├── IRazorEngineBuilder.cs │ ├── IRazorEngineFeature.cs │ ├── IRazorEnginePhase.cs │ ├── IRazorFeature.cs │ ├── IRazorIntermediateNodeLoweringPhase.cs │ ├── IRazorOptimizationPass.cs │ ├── IRazorOptimizationPhase.cs │ ├── IRazorParserOptionsFactoryProjectFeature.cs │ ├── IRazorParserOptionsFeature.cs │ ├── IRazorParsingPhase.cs │ ├── IRazorProjectEngineFeature.cs │ ├── IRazorSyntaxTreePass.cs │ ├── IRazorSyntaxTreePhase.cs │ ├── IRazorTagHelperBinderPhase.cs │ ├── IRazorTargetExtensionFeature.cs │ ├── ITagHelperDescriptorProvider.cs │ ├── ITagHelperFeature.cs │ ├── Intermediate │ │ ├── CSharpCodeAttributeValueIntermediateNode.cs │ │ ├── CSharpCodeIntermediateNode.cs │ │ ├── CSharpExpressionAttributeValueIntermediateNode.cs │ │ ├── CSharpExpressionIntermediateNode.cs │ │ ├── CascadingGenericTypeParameter.cs │ │ ├── ClassDeclarationIntermediateNode.cs │ │ ├── CommonAnnotations.cs │ │ ├── ComponentAttributeIntermediateNode.cs │ │ ├── ComponentChildContentIntermediateNode.cs │ │ ├── ComponentIntermediateNode.cs │ │ ├── ComponentTypeArgumentIntermediateNode.cs │ │ ├── ComponentTypeInferenceMethodIntermediateNode.cs │ │ ├── DebuggerDisplayFormatter.cs │ │ ├── DefaultRazorIntermediateNodeBuilder.cs │ │ ├── DirectiveIntermediateNode.cs │ │ ├── DirectiveTokenIntermediateNode.cs │ │ ├── DocumentIntermediateNode.cs │ │ ├── DocumentIntermediateNodeExtensions.cs │ │ ├── ExtensionIntermediateNode.cs │ │ ├── FieldDeclarationIntermediateNode.cs │ │ ├── HtmlAttributeIntermediateNode.cs │ │ ├── HtmlAttributeValueIntermediateNode.cs │ │ ├── HtmlContentIntermediateNode.cs │ │ ├── HtmlContentIntermediateNodeExtensions.cs │ │ ├── IExtensionIntermediateNodeVisitor.cs │ │ ├── IntermediateNode.cs │ │ ├── IntermediateNodeBuilder.cs │ │ ├── IntermediateNodeCollection.cs │ │ ├── IntermediateNodeExtensions.cs │ │ ├── IntermediateNodeFormatter.cs │ │ ├── IntermediateNodeFormatterBase.cs │ │ ├── IntermediateNodeReference.cs │ │ ├── IntermediateNodeVisitor.cs │ │ ├── IntermediateNodeWalker.cs │ │ ├── IntermediateToken.cs │ │ ├── LazyIntermediateToken.cs │ │ ├── MalformedDirectiveIntermediateNode.cs │ │ ├── MarkupBlockIntermediateNode.cs │ │ ├── MarkupElementIntermediateNode.cs │ │ ├── MemberDeclarationIntermediateNode.cs │ │ ├── MethodDeclarationIntermediateNode.cs │ │ ├── MethodParameter.cs │ │ ├── NamespaceDeclarationIntermediateNode.cs │ │ ├── PropertyDeclarationIntermediateNode.cs │ │ ├── ReferenceCaptureIntermediateNode.cs │ │ ├── SetKeyIntermediateNode.cs │ │ ├── SplatIntermediateNode.cs │ │ ├── TagHelperBodyIntermediateNode.cs │ │ ├── TagHelperDirectiveAttributeIntermediateNode.cs │ │ ├── TagHelperDirectiveAttributeParameterIntermediateNode.cs │ │ ├── TagHelperHtmlAttributeIntermediateNode.cs │ │ ├── TagHelperIntermediateNode.cs │ │ ├── TagHelperPropertyIntermediateNode.cs │ │ ├── TokenKind.cs │ │ ├── TypeParameter.cs │ │ └── UsingDirectiveIntermediateNode.cs │ ├── IntermediateNodePassBase.cs │ ├── ItemCollection.cs │ ├── LargeTextSourceDocument.cs │ ├── Legacy │ │ ├── AcceptedCharactersInternal.cs │ │ ├── AddImportChunkGenerator.cs │ │ ├── AddTagHelperChunkGenerator.cs │ │ ├── AutoCompleteEditHandler.cs │ │ ├── BalancingModes.cs │ │ ├── BlockKindInternal.cs │ │ ├── CSharpCodeParser.cs │ │ ├── CSharpKeyword.cs │ │ ├── CSharpLanguageCharacteristics.cs │ │ ├── CSharpTokenizer.cs │ │ ├── ClassifiedSpanInternal.cs │ │ ├── CodeBlockEditHandler.cs │ │ ├── DirectiveCSharpTokenizer.cs │ │ ├── DirectiveHtmlTokenizer.cs │ │ ├── DirectiveTokenChunkGenerator.cs │ │ ├── DisposableAction.cs │ │ ├── EditResult.cs │ │ ├── ErrorSink.cs │ │ ├── ExpressionChunkGenerator.cs │ │ ├── FirstDirectiveCSharpLanguageCharacteristics.cs │ │ ├── FirstDirectiveHtmlLanguageCharacteristics.cs │ │ ├── HtmlLanguageCharacteristics.cs │ │ ├── HtmlMarkupParser.cs │ │ ├── HtmlTokenizer.cs │ │ ├── ISpanChunkGenerator.cs │ │ ├── ITextBuffer.cs │ │ ├── ITextDocument.cs │ │ ├── ITokenizer.cs │ │ ├── ImplicitExpressionEditHandler.cs │ │ ├── KnownTokenType.cs │ │ ├── LanguageCharacteristics.cs │ │ ├── LegacySyntaxNodeExtensions.cs │ │ ├── LiteralAttributeChunkGenerator.cs │ │ ├── LocationTagged.cs │ │ ├── MarkupChunkGenerator.cs │ │ ├── ParserBase.cs │ │ ├── ParserContext.cs │ │ ├── ParserHelpers.cs │ │ ├── ParserState.cs │ │ ├── PartialParseResultInternal.cs │ │ ├── RazorParser.cs │ │ ├── RazorSyntaxTreeExtensions.cs │ │ ├── RemoveTagHelperChunkGenerator.cs │ │ ├── SeekableTextReader.cs │ │ ├── SourceLocationTracker.cs │ │ ├── SpanChunkGenerator.cs │ │ ├── SpanContext.cs │ │ ├── SpanEditHandler.cs │ │ ├── SpanKindInternal.cs │ │ ├── StatementChunkGenerator.cs │ │ ├── SyntaxConstants.cs │ │ ├── TagHelperAttributeNode.cs │ │ ├── TagHelperBlockRewriter.cs │ │ ├── TagHelperDirectiveType.cs │ │ ├── TagHelperParseTreeRewriter.cs │ │ ├── TagHelperPrefixDirectiveChunkGenerator.cs │ │ ├── TagHelperSpanInternal.cs │ │ ├── TextReaderExtensions.cs │ │ ├── Tokenizer.cs │ │ ├── TokenizerBackedParser.cs │ │ ├── TokenizerView.cs │ │ └── WhiteSpaceRewriter.cs │ ├── Microsoft.AspNetCore.Razor.Language.csproj │ ├── NotFoundProjectItem.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProvideRazorExtensionInitializerAttribute.cs │ ├── PublicAPI.Shipped.txt │ ├── PublicAPI.Unshipped.txt │ ├── RazorCSharpDocument.cs │ ├── RazorCodeDocument.cs │ ├── RazorCodeDocumentExtensions.cs │ ├── RazorCodeGenerationOptions.cs │ ├── RazorCodeGenerationOptionsBuilder.cs │ ├── RazorConfiguration.cs │ ├── RazorDiagnostic.cs │ ├── RazorDiagnosticCollection.cs │ ├── RazorDiagnosticDescriptor.cs │ ├── RazorDiagnosticFactory.cs │ ├── RazorDiagnosticSeverity.cs │ ├── RazorEngine.cs │ ├── RazorEngineBuilderExtensions.cs │ ├── RazorEngineFeatureBase.cs │ ├── RazorEnginePhaseBase.cs │ ├── RazorExtension.cs │ ├── RazorExtensionInitializer.cs │ ├── RazorHtmlDocument.cs │ ├── RazorHtmlWriter.cs │ ├── RazorLanguageVersion.cs │ ├── RazorParserFeatureFlags.cs │ ├── RazorParserOptions.cs │ ├── RazorParserOptionsBuilder.cs │ ├── RazorProject.cs │ ├── RazorProjectEngine.cs │ ├── RazorProjectEngineBuilder.cs │ ├── RazorProjectEngineBuilderExtensions.cs │ ├── RazorProjectEngineFeatureBase.cs │ ├── RazorProjectFileSystem.cs │ ├── RazorProjectItem.cs │ ├── RazorSourceDocument.cs │ ├── RazorSourceDocumentProperties.cs │ ├── RazorSourceLineCollection.cs │ ├── RazorSyntaxTree.cs │ ├── RequiredAttributeDescriptor.cs │ ├── RequiredAttributeDescriptorBuilder.cs │ ├── RequiredAttributeDescriptorBuilderExtensions.cs │ ├── RequiredAttributeDescriptorComparer.cs │ ├── RequiredAttributeDescriptorExtensions.cs │ ├── Resources.resx │ ├── SourceChange.cs │ ├── SourceLocation.cs │ ├── SourceMapping.cs │ ├── SourceSpan.cs │ ├── StreamSourceDocument.cs │ ├── StringSegment.cs │ ├── StringSourceDocument.cs │ ├── StringTokenizer.cs │ ├── SuppressChecksumOptionsFeature.cs │ ├── Syntax │ │ ├── ArrayElement.cs │ │ ├── ChildSyntaxList.cs │ │ ├── Generated │ │ │ ├── Syntax.xml.Internal.Generated.cs │ │ │ ├── Syntax.xml.Main.Generated.cs │ │ │ └── Syntax.xml.Syntax.Generated.cs │ │ ├── GreenNode.cs │ │ ├── GreenNodeExtensions.cs │ │ ├── InternalSyntax │ │ │ ├── MarkupEndTagSyntax.cs │ │ │ ├── MarkupStartTagSyntax.cs │ │ │ ├── RazorDirectiveSyntax.cs │ │ │ ├── RazorSyntaxNode.cs │ │ │ ├── SyntaxFactory.cs │ │ │ ├── SyntaxList.cs │ │ │ ├── SyntaxListBuilder.cs │ │ │ ├── SyntaxListBuilderOfT.cs │ │ │ ├── SyntaxListOfT.cs │ │ │ ├── SyntaxListPool.cs │ │ │ ├── SyntaxRewriter.cs │ │ │ ├── SyntaxToken.cs │ │ │ ├── SyntaxTokenCache.cs │ │ │ ├── SyntaxTrivia.cs │ │ │ └── SyntaxVisitor.cs │ │ ├── MarkupEndTagSyntax.cs │ │ ├── MarkupMinimizedTagHelperAttributeSyntax.cs │ │ ├── MarkupMinimizedTagHelperDirectiveAttributeSyntax.cs │ │ ├── MarkupStartTagSyntax.cs │ │ ├── MarkupTagHelperAttributeSyntax.cs │ │ ├── MarkupTagHelperDirectiveAttributeSyntax.cs │ │ ├── MarkupTagHelperElementSyntax.cs │ │ ├── MarkupTagHelperEndTagSyntax.cs │ │ ├── MarkupTagHelperStartTagSyntax.cs │ │ ├── NodeFlags.cs │ │ ├── ObjectPool.cs │ │ ├── RazorDirectiveSyntax.cs │ │ ├── RazorSyntaxNode.cs │ │ ├── SpecializedCollections.cs │ │ ├── StackGuard.cs │ │ ├── Syntax.xml │ │ ├── SyntaxAnnotation.cs │ │ ├── SyntaxExtensions.cs │ │ ├── SyntaxFactory.cs │ │ ├── SyntaxKind.cs │ │ ├── SyntaxList.cs │ │ ├── SyntaxListBuilder.cs │ │ ├── SyntaxListBuilderExtensions.cs │ │ ├── SyntaxListBuilderOfT.cs │ │ ├── SyntaxListOfT.cs │ │ ├── SyntaxNode.Iterators.cs │ │ ├── SyntaxNode.cs │ │ ├── SyntaxNodeExtensions.cs │ │ ├── SyntaxReplacer.cs │ │ ├── SyntaxRewriter.cs │ │ ├── SyntaxSerializer.cs │ │ ├── SyntaxToken.cs │ │ ├── SyntaxTrivia.cs │ │ ├── SyntaxTriviaList.cs │ │ ├── SyntaxTriviaListBuilder.cs │ │ ├── SyntaxUtilities.cs │ │ ├── SyntaxVisitor.cs │ │ ├── SyntaxWalker.cs │ │ └── TextSpan.cs │ ├── TagHelperAttributeInfo.cs │ ├── TagHelperBinder.cs │ ├── TagHelperBinding.cs │ ├── TagHelperConventions.cs │ ├── TagHelperDescriptor.cs │ ├── TagHelperDescriptorBuilder.cs │ ├── TagHelperDescriptorBuilderExtensions.cs │ ├── TagHelperDescriptorComparer.cs │ ├── TagHelperDescriptorExtensions.cs │ ├── TagHelperDescriptorProviderContext.cs │ ├── TagHelperDocumentContext.cs │ ├── TagHelperInfo.cs │ ├── TagHelperMatchingConventions.cs │ ├── TagHelperMetadata.cs │ ├── TagHelperSpanVisitor.cs │ ├── TagMatchingRuleDescriptor.cs │ ├── TagMatchingRuleDescriptorBuilder.cs │ ├── TagMatchingRuleDescriptorComparer.cs │ ├── TagMode.cs │ ├── TagStructure.cs │ ├── TypeNameFeature.cs │ ├── TypeNameRewriter.cs │ ├── Util │ │ └── NullableAttributes.cs │ ├── VirtualRazorProjectFileSystem.cs │ ├── baseline.netcore.json │ ├── baseline.netframework.json │ ├── breakingchanges.netcore.json │ └── breakingchanges.netframework.json └── test │ ├── BoundAttributeDescriptorExtensionsTest.cs │ ├── BoundAttributeDescriptorTest.cs │ ├── CodeGeneration │ ├── CSharpCodeWriterTest.cs │ ├── CodeTargetTest.cs │ ├── DefaultCodeTargetBuilderTest.cs │ ├── DefaultCodeTargetTest.cs │ ├── DefaultDocumentWriterTest.cs │ ├── DesignTimeNodeWriterTest.cs │ ├── LiteralRuntimeNodeWriterTest.cs │ ├── RuntimeNodeWriterTest.cs │ └── TagHelperHtmlAttributeRuntimeNodeWriterTest.cs │ ├── Components │ ├── ComponentDocumentClassifierPassTest.cs │ ├── ComponentDuplicateAttributeDiagnosticPassTest.cs │ ├── ComponentMarkupBlockPassTest.cs │ ├── ComponentMarkupEncodingPassTest.cs │ ├── ComponentWhitespacePassTest.cs │ └── NodeAssert.cs │ ├── DefaultAllowedChildTagDescriptorBuilderTest.cs │ ├── DefaultBoundAttributeDescriptorBuilderTest.cs │ ├── DefaultDocumentClassifierPassTest.cs │ ├── DefaultItemCollectionTest.cs │ ├── DefaultRazorCSharpLoweringPhaseTest.cs │ ├── DefaultRazorCodeDocumentTest.cs │ ├── DefaultRazorDiagnosticTest.cs │ ├── DefaultRazorDirectiveClassifierPhaseTest.cs │ ├── DefaultRazorDocumentClassifierPhaseTest.cs │ ├── DefaultRazorEngineBuilderTest.cs │ ├── DefaultRazorEngineTest.cs │ ├── DefaultRazorIntermediateNodeLoweringPhaseIntegrationTest.cs │ ├── DefaultRazorIntermediateNodeLoweringPhaseTest.cs │ ├── DefaultRazorOptimizationPhaseTest.cs │ ├── DefaultRazorParsingPhaseTest.cs │ ├── DefaultRazorProjectEngineBuilderTest.cs │ ├── DefaultRazorProjectEngineIntegrationTest.cs │ ├── DefaultRazorProjectEngineTest.cs │ ├── DefaultRazorProjectFileSystemTest.cs │ ├── DefaultRazorProjectItemTest.cs │ ├── DefaultRazorSourceLineCollectionTest.cs │ ├── DefaultRazorSyntaxTreePhaseTest.cs │ ├── DefaultRazorTagHelperBinderPhaseTest.cs │ ├── DefaultRequiredAttributeDescriptorBuilderTest.cs │ ├── DirectiveDescriptorBuilderExtensionsTest.cs │ ├── DirectiveDescriptorTest.cs │ ├── DirectiveRemovalOptimizationPassTest.cs │ ├── DirectiveTokenEditHandlerTest.cs │ ├── DocumentClassifierPassBaseTest.cs │ ├── Extensions │ ├── DefaultMetadataIdentifierFeatureTest.cs │ ├── DefaultTagHelperOptimizationPassTest.cs │ ├── DefaultTagHelperTargetExtensionTest.cs │ ├── DesignTimeDirectiveTargetExtensionTest.cs │ ├── FunctionsDirectivePassTest.cs │ ├── InheritsDirectivePassTest.cs │ ├── MetadataAttributePassTest.cs │ ├── MetadataAttributeTargetExtensionTest.cs │ ├── PreallocatedAttributeTargetExtensionTest.cs │ ├── SectionDirectivePassTest.cs │ ├── SectionTargetExtensionTest.cs │ └── TemplateTargetExtensionTest.cs │ ├── HashCodeCombinerTest.cs │ ├── HtmlConventionsTest.cs │ ├── HtmlNodeOptimizationPassTest.cs │ ├── IntegrationTests │ ├── BasicIntegrationTest.cs │ ├── CodeGenerationIntegrationTest.cs │ ├── ComponentBindIntegrationTest.cs │ ├── ComponentChildContentIntegrationTest.cs │ ├── ComponentCodeGenerationTestBase.cs │ ├── ComponentDeclarationIntegrationTest.cs │ ├── ComponentDesignTimeCodeGenerationTest.cs │ ├── ComponentDiagnosticRazorIntegrationTest.cs │ ├── ComponentDirectiveIntegrationTest.cs │ ├── ComponentDiscoveryIntegrationTest.cs │ ├── ComponentFilePathIntegrationTest.cs │ ├── ComponentGenericTypeIntegrationTest.cs │ ├── ComponentImportsIntegrationTest.cs │ ├── ComponentRuntimeCodeGenerationTest.cs │ ├── ComponentTemplateIntegrationTest.cs │ ├── ComponentTypingTest.cs │ ├── ExtensibleDirectiveTest.cs │ ├── HtmlAttributeIntegrationTest.cs │ ├── TagHelpersIntegrationTest.cs │ └── TestTagHelperDescriptors.cs │ ├── Intermediate │ ├── DefaultRazorIntermediateNodeBuilderTest.cs │ ├── DocumentIntermediateNodeExtensionsTest.cs │ ├── ExtensionIntermediateNodeTest.cs │ ├── IntermediateNodeReferenceTest.cs │ └── IntermediateNodeWalkerTest.cs │ ├── LargeTextSourceDocumentTest.cs │ ├── Legacy │ ├── BaselineWriter.cs │ ├── CSharpAutoCompleteTest.cs │ ├── CSharpBlockTest.cs │ ├── CSharpCodeParserTest.cs │ ├── CSharpErrorTest.cs │ ├── CSharpExplicitExpressionTest.cs │ ├── CSharpFunctionsTest.cs │ ├── CSharpImplicitExpressionTest.cs │ ├── CSharpLanguageCharacteristicsTest.cs │ ├── CSharpNestedStatementsTest.cs │ ├── CSharpRazorCommentsTest.cs │ ├── CSharpReservedWordsTest.cs │ ├── CSharpSectionTest.cs │ ├── CSharpSpecialBlockTest.cs │ ├── CSharpStatementTest.cs │ ├── CSharpTemplateTest.cs │ ├── CSharpToMarkupSwitchTest.cs │ ├── CSharpTokenizerCommentTest.cs │ ├── CSharpTokenizerIdentifierTest.cs │ ├── CSharpTokenizerLiteralTest.cs │ ├── CSharpTokenizerOperatorsTest.cs │ ├── CSharpTokenizerTest.cs │ ├── CSharpTokenizerTestBase.cs │ ├── CSharpVerbatimBlockTest.cs │ ├── CSharpWhitespaceHandlingTest.cs │ ├── CodeBlockEditHandlerTest.cs │ ├── DirectiveCSharpTokenizerTest.cs │ ├── DirectiveHtmlTokenizerTest.cs │ ├── DisposableActionTest.cs │ ├── HtmlAttributeTest.cs │ ├── HtmlBlockTest.cs │ ├── HtmlDocumentTest.cs │ ├── HtmlErrorTest.cs │ ├── HtmlMarkupParserTests.cs │ ├── HtmlTagsTest.cs │ ├── HtmlToCodeSwitchTest.cs │ ├── HtmlTokenizerTest.cs │ ├── HtmlTokenizerTestBase.cs │ ├── ImplicitExpressionEditHandlerTest.cs │ ├── MarkupElementGroupingTest.cs │ ├── RazorDirectivesTest.cs │ ├── RazorParserTest.cs │ ├── SourceLocationTrackerTest.cs │ ├── TagHelperBlockRewriterTest.cs │ ├── TagHelperParseTreeRewriterTest.cs │ ├── TagHelperRewritingTestBase.cs │ ├── TextReaderExtensionsTest.cs │ ├── TokenizerLookaheadTest.cs │ ├── TokenizerTestBase.cs │ └── WhiteSpaceRewriterTest.cs │ ├── Microsoft.AspNetCore.Razor.Language.Test.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── RazorCodeDocumentExtensionsTest.cs │ ├── RazorCodeDocumentTest.cs │ ├── RazorDiagnosticDescriptorTest.cs │ ├── RazorDiagnosticTest.cs │ ├── RazorEngineBuilderExtensionsTest.cs │ ├── RazorEngineTest.cs │ ├── RazorLanguageVersionTest.cs │ ├── RazorParserFeatureFlagsTest.cs │ ├── RazorProjectEngineBuilderExtensionsTest.cs │ ├── RazorProjectEngineFeatureBaseTest.cs │ ├── RazorProjectEngineTest.cs │ ├── RazorProjectItemTest.cs │ ├── RazorProjectTest.cs │ ├── RazorSourceDocumentTest.cs │ ├── RazorSyntaxTreeTest.cs │ ├── SourceChangeTest.cs │ ├── SourceLocationTest.cs │ ├── SourceSpanTest.cs │ ├── StreamSourceDocumentTest.cs │ ├── StringSegmentTest.cs │ ├── StringSourceDocumentTest.cs │ ├── StringTokenizerTest.cs │ ├── Syntax │ └── SyntaxTokenCacheTest.cs │ ├── TagHelperBinderTest.cs │ ├── TagHelperDescriptorBuilderTest.cs │ ├── TagHelperDescriptorComparerTest.cs │ ├── TagHelperDescriptorExtensionsTest.cs │ ├── TagHelperMatchingConventionsTest.cs │ ├── TestFiles │ ├── DefaultRazorProjectFileSystem │ │ ├── Home.cshtml │ │ ├── Views │ │ │ ├── About │ │ │ │ └── About.cshtml │ │ │ ├── Home │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.txt │ │ │ │ └── _ViewImports.cshtml │ │ │ └── _ViewImports.cshtml │ │ └── _ViewImports.cshtml │ ├── IntegrationTests │ │ ├── BasicIntegrationTest │ │ │ ├── CustomDirective.cshtml │ │ │ ├── CustomDirective.ir.txt │ │ │ ├── Empty.cshtml │ │ │ ├── Empty.ir.txt │ │ │ ├── HelloWorld.cshtml │ │ │ └── HelloWorld.ir.txt │ │ ├── CodeGenerationIntegrationTest │ │ │ ├── AddTagHelperDirective.cshtml │ │ │ ├── AddTagHelperDirective_DesignTime.codegen.cs │ │ │ ├── AddTagHelperDirective_DesignTime.codegen.html │ │ │ ├── AddTagHelperDirective_DesignTime.ir.txt │ │ │ ├── AddTagHelperDirective_DesignTime.mappings.txt │ │ │ ├── AttributeDirective.cshtml │ │ │ ├── AttributeDirective_DesignTime.codegen.cs │ │ │ ├── AttributeDirective_DesignTime.codegen.html │ │ │ ├── AttributeDirective_DesignTime.ir.txt │ │ │ ├── AttributeDirective_DesignTime.mappings.txt │ │ │ ├── AttributeDirective_Runtime.codegen.cs │ │ │ ├── AttributeDirective_Runtime.ir.txt │ │ │ ├── AttributeTargetingTagHelpers.cshtml │ │ │ ├── AttributeTargetingTagHelpers_DesignTime.codegen.cs │ │ │ ├── AttributeTargetingTagHelpers_DesignTime.ir.txt │ │ │ ├── AttributeTargetingTagHelpers_DesignTime.mappings.txt │ │ │ ├── AttributeTargetingTagHelpers_Runtime.codegen.cs │ │ │ ├── AttributeTargetingTagHelpers_Runtime.ir.txt │ │ │ ├── Await.cshtml │ │ │ ├── Await_DesignTime.codegen.cs │ │ │ ├── Await_DesignTime.codegen.html │ │ │ ├── Await_DesignTime.ir.txt │ │ │ ├── Await_DesignTime.mappings.txt │ │ │ ├── Await_Runtime.codegen.cs │ │ │ ├── Await_Runtime.ir.txt │ │ │ ├── BasicTagHelpers.cshtml │ │ │ ├── BasicTagHelpers_DesignTime.codegen.cs │ │ │ ├── BasicTagHelpers_DesignTime.ir.txt │ │ │ ├── BasicTagHelpers_DesignTime.mappings.txt │ │ │ ├── BasicTagHelpers_Prefixed.cshtml │ │ │ ├── BasicTagHelpers_Prefixed_DesignTime.codegen.cs │ │ │ ├── BasicTagHelpers_Prefixed_DesignTime.ir.txt │ │ │ ├── BasicTagHelpers_Prefixed_DesignTime.mappings.txt │ │ │ ├── BasicTagHelpers_Prefixed_Runtime.codegen.cs │ │ │ ├── BasicTagHelpers_Prefixed_Runtime.ir.txt │ │ │ ├── BasicTagHelpers_RemoveTagHelper.cshtml │ │ │ ├── BasicTagHelpers_RemoveTagHelper_Runtime.codegen.cs │ │ │ ├── BasicTagHelpers_RemoveTagHelper_Runtime.ir.txt │ │ │ ├── BasicTagHelpers_Runtime.codegen.cs │ │ │ ├── BasicTagHelpers_Runtime.ir.txt │ │ │ ├── Blocks.cshtml │ │ │ ├── Blocks_DesignTime.codegen.cs │ │ │ ├── Blocks_DesignTime.codegen.html │ │ │ ├── Blocks_DesignTime.ir.txt │ │ │ ├── Blocks_DesignTime.mappings.txt │ │ │ ├── Blocks_Runtime.codegen.cs │ │ │ ├── Blocks_Runtime.ir.txt │ │ │ ├── CSharp7.cshtml │ │ │ ├── CSharp7_DesignTime.codegen.cs │ │ │ ├── CSharp7_DesignTime.codegen.html │ │ │ ├── CSharp7_DesignTime.ir.txt │ │ │ ├── CSharp7_DesignTime.mappings.txt │ │ │ ├── CSharp7_Runtime.codegen.cs │ │ │ ├── CSharp7_Runtime.ir.txt │ │ │ ├── CSharp8.cshtml │ │ │ ├── CSharp8_DesignTime.codegen.cs │ │ │ ├── CSharp8_DesignTime.codegen.html │ │ │ ├── CSharp8_DesignTime.ir.txt │ │ │ ├── CSharp8_DesignTime.mappings.txt │ │ │ ├── CSharp8_Runtime.codegen.cs │ │ │ ├── CSharp8_Runtime.ir.txt │ │ │ ├── CodeBlock.cshtml │ │ │ ├── CodeBlockAtEOF.cshtml │ │ │ ├── CodeBlockAtEOF_DesignTime.codegen.cs │ │ │ ├── CodeBlockAtEOF_DesignTime.codegen.html │ │ │ ├── CodeBlockAtEOF_DesignTime.diagnostics.txt │ │ │ ├── CodeBlockAtEOF_DesignTime.ir.txt │ │ │ ├── CodeBlockAtEOF_DesignTime.mappings.txt │ │ │ ├── CodeBlockAtEOF_Runtime.codegen.cs │ │ │ ├── CodeBlockAtEOF_Runtime.diagnostics.txt │ │ │ ├── CodeBlockAtEOF_Runtime.ir.txt │ │ │ ├── CodeBlockWithTextElement.cshtml │ │ │ ├── CodeBlockWithTextElement_DesignTime.codegen.cs │ │ │ ├── CodeBlockWithTextElement_DesignTime.codegen.html │ │ │ ├── CodeBlockWithTextElement_DesignTime.ir.txt │ │ │ ├── CodeBlockWithTextElement_DesignTime.mappings.txt │ │ │ ├── CodeBlockWithTextElement_Runtime.codegen.cs │ │ │ ├── CodeBlockWithTextElement_Runtime.ir.txt │ │ │ ├── CodeBlock_DesignTime.codegen.cs │ │ │ ├── CodeBlock_DesignTime.codegen.html │ │ │ ├── CodeBlock_DesignTime.ir.txt │ │ │ ├── CodeBlock_DesignTime.mappings.txt │ │ │ ├── CodeBlock_Runtime.codegen.cs │ │ │ ├── CodeBlock_Runtime.ir.txt │ │ │ ├── ComplexTagHelpers.cshtml │ │ │ ├── ComplexTagHelpers_DesignTime.codegen.cs │ │ │ ├── ComplexTagHelpers_DesignTime.diagnostics.txt │ │ │ ├── ComplexTagHelpers_DesignTime.ir.txt │ │ │ ├── ComplexTagHelpers_DesignTime.mappings.txt │ │ │ ├── ComplexTagHelpers_Runtime.codegen.cs │ │ │ ├── ComplexTagHelpers_Runtime.diagnostics.txt │ │ │ ├── ComplexTagHelpers_Runtime.ir.txt │ │ │ ├── ConditionalAttributes.cshtml │ │ │ ├── ConditionalAttributes_DesignTime.codegen.cs │ │ │ ├── ConditionalAttributes_DesignTime.codegen.html │ │ │ ├── ConditionalAttributes_DesignTime.ir.txt │ │ │ ├── ConditionalAttributes_DesignTime.mappings.txt │ │ │ ├── ConditionalAttributes_Runtime.codegen.cs │ │ │ ├── ConditionalAttributes_Runtime.ir.txt │ │ │ ├── CssSelectorTagHelperAttributes.cshtml │ │ │ ├── CssSelectorTagHelperAttributes_Runtime.codegen.cs │ │ │ ├── CssSelectorTagHelperAttributes_Runtime.ir.txt │ │ │ ├── DesignTime.cshtml │ │ │ ├── DesignTime_DesignTime.codegen.cs │ │ │ ├── DesignTime_DesignTime.codegen.html │ │ │ ├── DesignTime_DesignTime.ir.txt │ │ │ ├── DesignTime_DesignTime.mappings.txt │ │ │ ├── DuplicateAttributeTagHelpers.cshtml │ │ │ ├── DuplicateAttributeTagHelpers_DesignTime.codegen.cs │ │ │ ├── DuplicateAttributeTagHelpers_DesignTime.ir.txt │ │ │ ├── DuplicateAttributeTagHelpers_DesignTime.mappings.txt │ │ │ ├── DuplicateAttributeTagHelpers_Runtime.codegen.cs │ │ │ ├── DuplicateAttributeTagHelpers_Runtime.ir.txt │ │ │ ├── DuplicateTargetTagHelper.cshtml │ │ │ ├── DuplicateTargetTagHelper_DesignTime.codegen.cs │ │ │ ├── DuplicateTargetTagHelper_DesignTime.ir.txt │ │ │ ├── DuplicateTargetTagHelper_DesignTime.mappings.txt │ │ │ ├── DuplicateTargetTagHelper_Runtime.codegen.cs │ │ │ ├── DuplicateTargetTagHelper_Runtime.ir.txt │ │ │ ├── DynamicAttributeTagHelpers.cshtml │ │ │ ├── DynamicAttributeTagHelpers_DesignTime.codegen.cs │ │ │ ├── DynamicAttributeTagHelpers_DesignTime.ir.txt │ │ │ ├── DynamicAttributeTagHelpers_DesignTime.mappings.txt │ │ │ ├── DynamicAttributeTagHelpers_Runtime.codegen.cs │ │ │ ├── DynamicAttributeTagHelpers_Runtime.ir.txt │ │ │ ├── EmptyAttributeTagHelpers.cshtml │ │ │ ├── EmptyAttributeTagHelpers_DesignTime.codegen.cs │ │ │ ├── EmptyAttributeTagHelpers_DesignTime.diagnostics.txt │ │ │ ├── EmptyAttributeTagHelpers_DesignTime.ir.txt │ │ │ ├── EmptyAttributeTagHelpers_DesignTime.mappings.txt │ │ │ ├── EmptyAttributeTagHelpers_Runtime.codegen.cs │ │ │ ├── EmptyAttributeTagHelpers_Runtime.diagnostics.txt │ │ │ ├── EmptyAttributeTagHelpers_Runtime.ir.txt │ │ │ ├── EmptyCodeBlock.cshtml │ │ │ ├── EmptyCodeBlock_DesignTime.codegen.cs │ │ │ ├── EmptyCodeBlock_DesignTime.codegen.html │ │ │ ├── EmptyCodeBlock_DesignTime.ir.txt │ │ │ ├── EmptyCodeBlock_DesignTime.mappings.txt │ │ │ ├── EmptyCodeBlock_Runtime.codegen.cs │ │ │ ├── EmptyCodeBlock_Runtime.ir.txt │ │ │ ├── EmptyExplicitExpression.cshtml │ │ │ ├── EmptyExplicitExpression_DesignTime.codegen.cs │ │ │ ├── EmptyExplicitExpression_DesignTime.codegen.html │ │ │ ├── EmptyExplicitExpression_DesignTime.ir.txt │ │ │ ├── EmptyExplicitExpression_DesignTime.mappings.txt │ │ │ ├── EmptyExplicitExpression_Runtime.codegen.cs │ │ │ ├── EmptyExplicitExpression_Runtime.ir.txt │ │ │ ├── EmptyImplicitExpression.cshtml │ │ │ ├── EmptyImplicitExpressionInCode.cshtml │ │ │ ├── EmptyImplicitExpressionInCode_DesignTime.codegen.cs │ │ │ ├── EmptyImplicitExpressionInCode_DesignTime.codegen.html │ │ │ ├── EmptyImplicitExpressionInCode_DesignTime.diagnostics.txt │ │ │ ├── EmptyImplicitExpressionInCode_DesignTime.ir.txt │ │ │ ├── EmptyImplicitExpressionInCode_DesignTime.mappings.txt │ │ │ ├── EmptyImplicitExpressionInCode_Runtime.codegen.cs │ │ │ ├── EmptyImplicitExpressionInCode_Runtime.diagnostics.txt │ │ │ ├── EmptyImplicitExpressionInCode_Runtime.ir.txt │ │ │ ├── EmptyImplicitExpression_DesignTime.codegen.cs │ │ │ ├── EmptyImplicitExpression_DesignTime.codegen.html │ │ │ ├── EmptyImplicitExpression_DesignTime.diagnostics.txt │ │ │ ├── EmptyImplicitExpression_DesignTime.ir.txt │ │ │ ├── EmptyImplicitExpression_DesignTime.mappings.txt │ │ │ ├── EmptyImplicitExpression_Runtime.codegen.cs │ │ │ ├── EmptyImplicitExpression_Runtime.diagnostics.txt │ │ │ ├── EmptyImplicitExpression_Runtime.ir.txt │ │ │ ├── EnumTagHelpers.cshtml │ │ │ ├── EnumTagHelpers_DesignTime.codegen.cs │ │ │ ├── EnumTagHelpers_DesignTime.ir.txt │ │ │ ├── EnumTagHelpers_DesignTime.mappings.txt │ │ │ ├── EnumTagHelpers_Runtime.codegen.cs │ │ │ ├── EnumTagHelpers_Runtime.ir.txt │ │ │ ├── EscapedTagHelpers.cshtml │ │ │ ├── EscapedTagHelpers_DesignTime.codegen.cs │ │ │ ├── EscapedTagHelpers_DesignTime.ir.txt │ │ │ ├── EscapedTagHelpers_DesignTime.mappings.txt │ │ │ ├── EscapedTagHelpers_Runtime.codegen.cs │ │ │ ├── EscapedTagHelpers_Runtime.ir.txt │ │ │ ├── ExplicitExpression.cshtml │ │ │ ├── ExplicitExpressionAtEOF.cshtml │ │ │ ├── ExplicitExpressionAtEOF_DesignTime.codegen.cs │ │ │ ├── ExplicitExpressionAtEOF_DesignTime.codegen.html │ │ │ ├── ExplicitExpressionAtEOF_DesignTime.diagnostics.txt │ │ │ ├── ExplicitExpressionAtEOF_DesignTime.ir.txt │ │ │ ├── ExplicitExpressionAtEOF_DesignTime.mappings.txt │ │ │ ├── ExplicitExpressionAtEOF_Runtime.codegen.cs │ │ │ ├── ExplicitExpressionAtEOF_Runtime.diagnostics.txt │ │ │ ├── ExplicitExpressionAtEOF_Runtime.ir.txt │ │ │ ├── ExplicitExpressionWithMarkup.cshtml │ │ │ ├── ExplicitExpressionWithMarkup_DesignTime.codegen.cs │ │ │ ├── ExplicitExpressionWithMarkup_DesignTime.codegen.html │ │ │ ├── ExplicitExpressionWithMarkup_DesignTime.diagnostics.txt │ │ │ ├── ExplicitExpressionWithMarkup_DesignTime.ir.txt │ │ │ ├── ExplicitExpressionWithMarkup_DesignTime.mappings.txt │ │ │ ├── ExplicitExpressionWithMarkup_Runtime.codegen.cs │ │ │ ├── ExplicitExpressionWithMarkup_Runtime.diagnostics.txt │ │ │ ├── ExplicitExpressionWithMarkup_Runtime.ir.txt │ │ │ ├── ExplicitExpression_DesignTime.codegen.cs │ │ │ ├── ExplicitExpression_DesignTime.codegen.html │ │ │ ├── ExplicitExpression_DesignTime.ir.txt │ │ │ ├── ExplicitExpression_DesignTime.mappings.txt │ │ │ ├── ExplicitExpression_Runtime.codegen.cs │ │ │ ├── ExplicitExpression_Runtime.ir.txt │ │ │ ├── ExpressionsInCode.cshtml │ │ │ ├── ExpressionsInCode_DesignTime.codegen.cs │ │ │ ├── ExpressionsInCode_DesignTime.codegen.html │ │ │ ├── ExpressionsInCode_DesignTime.ir.txt │ │ │ ├── ExpressionsInCode_DesignTime.mappings.txt │ │ │ ├── ExpressionsInCode_Runtime.codegen.cs │ │ │ ├── ExpressionsInCode_Runtime.ir.txt │ │ │ ├── FunctionsBlock.cshtml │ │ │ ├── FunctionsBlockMinimal.cshtml │ │ │ ├── FunctionsBlockMinimal_DesignTime.codegen.cs │ │ │ ├── FunctionsBlockMinimal_DesignTime.codegen.html │ │ │ ├── FunctionsBlockMinimal_DesignTime.ir.txt │ │ │ ├── FunctionsBlockMinimal_DesignTime.mappings.txt │ │ │ ├── FunctionsBlockMinimal_Runtime.codegen.cs │ │ │ ├── FunctionsBlockMinimal_Runtime.ir.txt │ │ │ ├── FunctionsBlock_DesignTime.codegen.cs │ │ │ ├── FunctionsBlock_DesignTime.codegen.html │ │ │ ├── FunctionsBlock_DesignTime.ir.txt │ │ │ ├── FunctionsBlock_DesignTime.mappings.txt │ │ │ ├── FunctionsBlock_Runtime.codegen.cs │ │ │ ├── FunctionsBlock_Runtime.ir.txt │ │ │ ├── HiddenSpansInCode.cshtml │ │ │ ├── HiddenSpansInCode_DesignTime.codegen.cs │ │ │ ├── HiddenSpansInCode_DesignTime.codegen.html │ │ │ ├── HiddenSpansInCode_DesignTime.ir.txt │ │ │ ├── HiddenSpansInCode_DesignTime.mappings.txt │ │ │ ├── HiddenSpansInCode_Runtime.codegen.cs │ │ │ ├── HiddenSpansInCode_Runtime.ir.txt │ │ │ ├── HtmlCommentWithQuote_Double.cshtml │ │ │ ├── HtmlCommentWithQuote_Double_DesignTime.codegen.cs │ │ │ ├── HtmlCommentWithQuote_Double_DesignTime.codegen.html │ │ │ ├── HtmlCommentWithQuote_Double_DesignTime.ir.txt │ │ │ ├── HtmlCommentWithQuote_Double_DesignTime.mappings.txt │ │ │ ├── HtmlCommentWithQuote_Double_Runtime.codegen.cs │ │ │ ├── HtmlCommentWithQuote_Double_Runtime.ir.txt │ │ │ ├── HtmlCommentWithQuote_Single.cshtml │ │ │ ├── HtmlCommentWithQuote_Single_DesignTime.codegen.cs │ │ │ ├── HtmlCommentWithQuote_Single_DesignTime.codegen.html │ │ │ ├── HtmlCommentWithQuote_Single_DesignTime.ir.txt │ │ │ ├── HtmlCommentWithQuote_Single_DesignTime.mappings.txt │ │ │ ├── HtmlCommentWithQuote_Single_Runtime.codegen.cs │ │ │ ├── HtmlCommentWithQuote_Single_Runtime.ir.txt │ │ │ ├── Implements.cshtml │ │ │ ├── Implements_DesignTime.codegen.cs │ │ │ ├── Implements_DesignTime.codegen.html │ │ │ ├── Implements_DesignTime.ir.txt │ │ │ ├── Implements_DesignTime.mappings.txt │ │ │ ├── Implements_Runtime.codegen.cs │ │ │ ├── Implements_Runtime.ir.txt │ │ │ ├── ImplicitExpression.cshtml │ │ │ ├── ImplicitExpressionAtEOF.cshtml │ │ │ ├── ImplicitExpressionAtEOF_DesignTime.codegen.cs │ │ │ ├── ImplicitExpressionAtEOF_DesignTime.codegen.html │ │ │ ├── ImplicitExpressionAtEOF_DesignTime.diagnostics.txt │ │ │ ├── ImplicitExpressionAtEOF_DesignTime.ir.txt │ │ │ ├── ImplicitExpressionAtEOF_DesignTime.mappings.txt │ │ │ ├── ImplicitExpressionAtEOF_Runtime.codegen.cs │ │ │ ├── ImplicitExpressionAtEOF_Runtime.diagnostics.txt │ │ │ ├── ImplicitExpressionAtEOF_Runtime.ir.txt │ │ │ ├── ImplicitExpression_DesignTime.codegen.cs │ │ │ ├── ImplicitExpression_DesignTime.codegen.html │ │ │ ├── ImplicitExpression_DesignTime.ir.txt │ │ │ ├── ImplicitExpression_DesignTime.mappings.txt │ │ │ ├── ImplicitExpression_Runtime.codegen.cs │ │ │ ├── ImplicitExpression_Runtime.ir.txt │ │ │ ├── IncompleteDirectives.cshtml │ │ │ ├── IncompleteDirectives_DesignTime.codegen.cs │ │ │ ├── IncompleteDirectives_DesignTime.codegen.html │ │ │ ├── IncompleteDirectives_DesignTime.diagnostics.txt │ │ │ ├── IncompleteDirectives_DesignTime.ir.txt │ │ │ ├── IncompleteDirectives_DesignTime.mappings.txt │ │ │ ├── IncompleteDirectives_Runtime.codegen.cs │ │ │ ├── IncompleteDirectives_Runtime.diagnostics.txt │ │ │ ├── IncompleteDirectives_Runtime.ir.txt │ │ │ ├── IncompleteTagHelper.cshtml │ │ │ ├── IncompleteTagHelper_DesignTime.codegen.cs │ │ │ ├── IncompleteTagHelper_DesignTime.diagnostics.txt │ │ │ ├── IncompleteTagHelper_DesignTime.ir.txt │ │ │ ├── IncompleteTagHelper_DesignTime.mappings.txt │ │ │ ├── IncompleteTagHelper_Runtime.codegen.cs │ │ │ ├── IncompleteTagHelper_Runtime.diagnostics.txt │ │ │ ├── IncompleteTagHelper_Runtime.ir.txt │ │ │ ├── Inherits.cshtml │ │ │ ├── Inherits_DesignTime.codegen.cs │ │ │ ├── Inherits_DesignTime.codegen.html │ │ │ ├── Inherits_DesignTime.ir.txt │ │ │ ├── Inherits_DesignTime.mappings.txt │ │ │ ├── Inherits_Runtime.codegen.cs │ │ │ ├── Inherits_Runtime.ir.txt │ │ │ ├── InlineBlocks.cshtml │ │ │ ├── InlineBlocks_DesignTime.codegen.cs │ │ │ ├── InlineBlocks_DesignTime.codegen.html │ │ │ ├── InlineBlocks_DesignTime.diagnostics.txt │ │ │ ├── InlineBlocks_DesignTime.ir.txt │ │ │ ├── InlineBlocks_DesignTime.mappings.txt │ │ │ ├── InlineBlocks_Runtime.codegen.cs │ │ │ ├── InlineBlocks_Runtime.diagnostics.txt │ │ │ ├── InlineBlocks_Runtime.ir.txt │ │ │ ├── Instrumented.cshtml │ │ │ ├── Instrumented_DesignTime.codegen.cs │ │ │ ├── Instrumented_DesignTime.codegen.html │ │ │ ├── Instrumented_DesignTime.ir.txt │ │ │ ├── Instrumented_DesignTime.mappings.txt │ │ │ ├── Instrumented_Runtime.codegen.cs │ │ │ ├── Instrumented_Runtime.ir.txt │ │ │ ├── MarkupInCodeBlock.cshtml │ │ │ ├── MarkupInCodeBlock_DesignTime.codegen.cs │ │ │ ├── MarkupInCodeBlock_DesignTime.codegen.html │ │ │ ├── MarkupInCodeBlock_DesignTime.ir.txt │ │ │ ├── MarkupInCodeBlock_DesignTime.mappings.txt │ │ │ ├── MarkupInCodeBlock_Runtime.codegen.cs │ │ │ ├── MarkupInCodeBlock_Runtime.ir.txt │ │ │ ├── Markup_InCodeBlocks.cshtml │ │ │ ├── Markup_InCodeBlocksWithTagHelper.cshtml │ │ │ ├── Markup_InCodeBlocksWithTagHelper_DesignTime.codegen.cs │ │ │ ├── Markup_InCodeBlocksWithTagHelper_DesignTime.ir.txt │ │ │ ├── Markup_InCodeBlocksWithTagHelper_DesignTime.mappings.txt │ │ │ ├── Markup_InCodeBlocksWithTagHelper_Runtime.codegen.cs │ │ │ ├── Markup_InCodeBlocksWithTagHelper_Runtime.ir.txt │ │ │ ├── Markup_InCodeBlocks_DesignTime.codegen.cs │ │ │ ├── Markup_InCodeBlocks_DesignTime.codegen.html │ │ │ ├── Markup_InCodeBlocks_DesignTime.ir.txt │ │ │ ├── Markup_InCodeBlocks_DesignTime.mappings.txt │ │ │ ├── Markup_InCodeBlocks_Runtime.codegen.cs │ │ │ ├── Markup_InCodeBlocks_Runtime.ir.txt │ │ │ ├── MinimizedTagHelpers.cshtml │ │ │ ├── MinimizedTagHelpers_DesignTime.codegen.cs │ │ │ ├── MinimizedTagHelpers_DesignTime.ir.txt │ │ │ ├── MinimizedTagHelpers_DesignTime.mappings.txt │ │ │ ├── MinimizedTagHelpers_Runtime.codegen.cs │ │ │ ├── MinimizedTagHelpers_Runtime.ir.txt │ │ │ ├── NestedCSharp.cshtml │ │ │ ├── NestedCSharp_DesignTime.codegen.cs │ │ │ ├── NestedCSharp_DesignTime.codegen.html │ │ │ ├── NestedCSharp_DesignTime.ir.txt │ │ │ ├── NestedCSharp_DesignTime.mappings.txt │ │ │ ├── NestedCSharp_Runtime.codegen.cs │ │ │ ├── NestedCSharp_Runtime.ir.txt │ │ │ ├── NestedCodeBlocks.cshtml │ │ │ ├── NestedCodeBlocks_DesignTime.codegen.cs │ │ │ ├── NestedCodeBlocks_DesignTime.codegen.html │ │ │ ├── NestedCodeBlocks_DesignTime.ir.txt │ │ │ ├── NestedCodeBlocks_DesignTime.mappings.txt │ │ │ ├── NestedCodeBlocks_Runtime.codegen.cs │ │ │ ├── NestedCodeBlocks_Runtime.ir.txt │ │ │ ├── NestedScriptTagTagHelpers.cshtml │ │ │ ├── NestedScriptTagTagHelpers_DesignTime.codegen.cs │ │ │ ├── NestedScriptTagTagHelpers_DesignTime.ir.txt │ │ │ ├── NestedScriptTagTagHelpers_DesignTime.mappings.txt │ │ │ ├── NestedScriptTagTagHelpers_Runtime.codegen.cs │ │ │ ├── NestedScriptTagTagHelpers_Runtime.ir.txt │ │ │ ├── NestedTagHelpers.cshtml │ │ │ ├── NestedTagHelpers_DesignTime.codegen.cs │ │ │ ├── NestedTagHelpers_DesignTime.ir.txt │ │ │ ├── NestedTagHelpers_DesignTime.mappings.txt │ │ │ ├── NestedTagHelpers_Runtime.codegen.cs │ │ │ ├── NestedTagHelpers_Runtime.ir.txt │ │ │ ├── NoLinePragmas.cshtml │ │ │ ├── NoLinePragmas_DesignTime.codegen.cs │ │ │ ├── NoLinePragmas_DesignTime.codegen.html │ │ │ ├── NoLinePragmas_DesignTime.ir.txt │ │ │ ├── NoLinePragmas_DesignTime.mappings.txt │ │ │ ├── NoLinePragmas_Runtime.codegen.cs │ │ │ ├── NoLinePragmas_Runtime.ir.txt │ │ │ ├── NullConditionalExpressions.cshtml │ │ │ ├── NullConditionalExpressions_DesignTime.codegen.cs │ │ │ ├── NullConditionalExpressions_DesignTime.codegen.html │ │ │ ├── NullConditionalExpressions_DesignTime.ir.txt │ │ │ ├── NullConditionalExpressions_DesignTime.mappings.txt │ │ │ ├── NullConditionalExpressions_Runtime.codegen.cs │ │ │ ├── NullConditionalExpressions_Runtime.ir.txt │ │ │ ├── OpenedIf.cshtml │ │ │ ├── OpenedIf_DesignTime.codegen.cs │ │ │ ├── OpenedIf_DesignTime.codegen.html │ │ │ ├── OpenedIf_DesignTime.diagnostics.txt │ │ │ ├── OpenedIf_DesignTime.ir.txt │ │ │ ├── OpenedIf_DesignTime.mappings.txt │ │ │ ├── OpenedIf_Runtime.codegen.cs │ │ │ ├── OpenedIf_Runtime.diagnostics.txt │ │ │ ├── OpenedIf_Runtime.ir.txt │ │ │ ├── ParserError.cshtml │ │ │ ├── ParserError_DesignTime.codegen.cs │ │ │ ├── ParserError_DesignTime.codegen.html │ │ │ ├── ParserError_DesignTime.diagnostics.txt │ │ │ ├── ParserError_DesignTime.ir.txt │ │ │ ├── ParserError_DesignTime.mappings.txt │ │ │ ├── ParserError_Runtime.codegen.cs │ │ │ ├── ParserError_Runtime.diagnostics.txt │ │ │ ├── ParserError_Runtime.ir.txt │ │ │ ├── PrefixedAttributeTagHelpers.cshtml │ │ │ ├── PrefixedAttributeTagHelpers_DesignTime.codegen.cs │ │ │ ├── PrefixedAttributeTagHelpers_DesignTime.ir.txt │ │ │ ├── PrefixedAttributeTagHelpers_DesignTime.mappings.txt │ │ │ ├── PrefixedAttributeTagHelpers_Runtime.codegen.cs │ │ │ ├── PrefixedAttributeTagHelpers_Runtime.ir.txt │ │ │ ├── RazorComments.cshtml │ │ │ ├── RazorComments_DesignTime.codegen.cs │ │ │ ├── RazorComments_DesignTime.codegen.html │ │ │ ├── RazorComments_DesignTime.ir.txt │ │ │ ├── RazorComments_DesignTime.mappings.txt │ │ │ ├── RazorComments_Runtime.codegen.cs │ │ │ ├── RazorComments_Runtime.ir.txt │ │ │ ├── RemoveTagHelperDirective.cshtml │ │ │ ├── RemoveTagHelperDirective_DesignTime.codegen.cs │ │ │ ├── RemoveTagHelperDirective_DesignTime.codegen.html │ │ │ ├── RemoveTagHelperDirective_DesignTime.ir.txt │ │ │ ├── RemoveTagHelperDirective_DesignTime.mappings.txt │ │ │ ├── Sections.cshtml │ │ │ ├── Sections_DesignTime.codegen.cs │ │ │ ├── Sections_DesignTime.codegen.html │ │ │ ├── Sections_DesignTime.ir.txt │ │ │ ├── Sections_DesignTime.mappings.txt │ │ │ ├── Sections_Runtime.codegen.cs │ │ │ ├── Sections_Runtime.ir.txt │ │ │ ├── SimpleTagHelpers.cshtml │ │ │ ├── SimpleTagHelpers_DesignTime.codegen.cs │ │ │ ├── SimpleTagHelpers_DesignTime.ir.txt │ │ │ ├── SimpleTagHelpers_DesignTime.mappings.txt │ │ │ ├── SimpleTagHelpers_Runtime.codegen.cs │ │ │ ├── SimpleTagHelpers_Runtime.ir.txt │ │ │ ├── SimpleUnspacedIf.cshtml │ │ │ ├── SimpleUnspacedIf_DesignTime.codegen.cs │ │ │ ├── SimpleUnspacedIf_DesignTime.codegen.html │ │ │ ├── SimpleUnspacedIf_DesignTime.ir.txt │ │ │ ├── SimpleUnspacedIf_DesignTime.mappings.txt │ │ │ ├── SimpleUnspacedIf_Runtime.codegen.cs │ │ │ ├── SimpleUnspacedIf_Runtime.ir.txt │ │ │ ├── SingleLineControlFlowStatements.cshtml │ │ │ ├── SingleLineControlFlowStatements_DesignTime.codegen.cs │ │ │ ├── SingleLineControlFlowStatements_DesignTime.codegen.html │ │ │ ├── SingleLineControlFlowStatements_DesignTime.diagnostics.txt │ │ │ ├── SingleLineControlFlowStatements_DesignTime.ir.txt │ │ │ ├── SingleLineControlFlowStatements_DesignTime.mappings.txt │ │ │ ├── SingleLineControlFlowStatements_Runtime.codegen.cs │ │ │ ├── SingleLineControlFlowStatements_Runtime.diagnostics.txt │ │ │ ├── SingleLineControlFlowStatements_Runtime.ir.txt │ │ │ ├── SingleTagHelper.cshtml │ │ │ ├── SingleTagHelperWithNewlineBeforeAttributes.cshtml │ │ │ ├── SingleTagHelperWithNewlineBeforeAttributes_DesignTime.codegen.cs │ │ │ ├── SingleTagHelperWithNewlineBeforeAttributes_DesignTime.ir.txt │ │ │ ├── SingleTagHelperWithNewlineBeforeAttributes_DesignTime.mappings.txt │ │ │ ├── SingleTagHelperWithNewlineBeforeAttributes_Runtime.codegen.cs │ │ │ ├── SingleTagHelperWithNewlineBeforeAttributes_Runtime.ir.txt │ │ │ ├── SingleTagHelper_DesignTime.codegen.cs │ │ │ ├── SingleTagHelper_DesignTime.ir.txt │ │ │ ├── SingleTagHelper_DesignTime.mappings.txt │ │ │ ├── SingleTagHelper_Runtime.codegen.cs │ │ │ ├── SingleTagHelper_Runtime.ir.txt │ │ │ ├── StringLiterals.cshtml │ │ │ ├── StringLiterals_DesignTime.codegen.cs │ │ │ ├── StringLiterals_DesignTime.codegen.html │ │ │ ├── StringLiterals_DesignTime.ir.txt │ │ │ ├── StringLiterals_DesignTime.mappings.txt │ │ │ ├── StringLiterals_Runtime.codegen.cs │ │ │ ├── StringLiterals_Runtime.ir.txt │ │ │ ├── SwitchExpression_RecursivePattern.cshtml │ │ │ ├── SwitchExpression_RecursivePattern_DesignTime.codegen.cs │ │ │ ├── SwitchExpression_RecursivePattern_DesignTime.codegen.html │ │ │ ├── SwitchExpression_RecursivePattern_DesignTime.ir.txt │ │ │ ├── SwitchExpression_RecursivePattern_DesignTime.mappings.txt │ │ │ ├── SwitchExpression_RecursivePattern_Runtime.codegen.cs │ │ │ ├── SwitchExpression_RecursivePattern_Runtime.ir.txt │ │ │ ├── SymbolBoundAttributes.cshtml │ │ │ ├── SymbolBoundAttributes_DesignTime.codegen.cs │ │ │ ├── SymbolBoundAttributes_DesignTime.diagnostics.txt │ │ │ ├── SymbolBoundAttributes_DesignTime.ir.txt │ │ │ ├── SymbolBoundAttributes_DesignTime.mappings.txt │ │ │ ├── SymbolBoundAttributes_Runtime.codegen.cs │ │ │ ├── SymbolBoundAttributes_Runtime.diagnostics.txt │ │ │ ├── SymbolBoundAttributes_Runtime.ir.txt │ │ │ ├── TagHelpersInSection.cshtml │ │ │ ├── TagHelpersInSection_DesignTime.codegen.cs │ │ │ ├── TagHelpersInSection_DesignTime.diagnostics.txt │ │ │ ├── TagHelpersInSection_DesignTime.ir.txt │ │ │ ├── TagHelpersInSection_DesignTime.mappings.txt │ │ │ ├── TagHelpersInSection_Runtime.codegen.cs │ │ │ ├── TagHelpersInSection_Runtime.diagnostics.txt │ │ │ ├── TagHelpersInSection_Runtime.ir.txt │ │ │ ├── TagHelpersWithBoundAttributes.cshtml │ │ │ ├── TagHelpersWithBoundAttributes_DesignTime.codegen.cs │ │ │ ├── TagHelpersWithBoundAttributes_DesignTime.ir.txt │ │ │ ├── TagHelpersWithBoundAttributes_DesignTime.mappings.txt │ │ │ ├── TagHelpersWithBoundAttributes_Runtime.codegen.cs │ │ │ ├── TagHelpersWithBoundAttributes_Runtime.ir.txt │ │ │ ├── TagHelpersWithDataDashAttributes.cshtml │ │ │ ├── TagHelpersWithDataDashAttributes_DesignTime.codegen.cs │ │ │ ├── TagHelpersWithDataDashAttributes_DesignTime.ir.txt │ │ │ ├── TagHelpersWithDataDashAttributes_DesignTime.mappings.txt │ │ │ ├── TagHelpersWithDataDashAttributes_Runtime.codegen.cs │ │ │ ├── TagHelpersWithDataDashAttributes_Runtime.ir.txt │ │ │ ├── TagHelpersWithPrefix.cshtml │ │ │ ├── TagHelpersWithPrefix_DesignTime.codegen.cs │ │ │ ├── TagHelpersWithPrefix_DesignTime.ir.txt │ │ │ ├── TagHelpersWithPrefix_DesignTime.mappings.txt │ │ │ ├── TagHelpersWithPrefix_Runtime.codegen.cs │ │ │ ├── TagHelpersWithPrefix_Runtime.ir.txt │ │ │ ├── TagHelpersWithTemplate.cshtml │ │ │ ├── TagHelpersWithTemplate_DesignTime.codegen.cs │ │ │ ├── TagHelpersWithTemplate_DesignTime.ir.txt │ │ │ ├── TagHelpersWithTemplate_DesignTime.mappings.txt │ │ │ ├── TagHelpersWithTemplate_Runtime.codegen.cs │ │ │ ├── TagHelpersWithTemplate_Runtime.ir.txt │ │ │ ├── TagHelpersWithWeirdlySpacedAttributes.cshtml │ │ │ ├── TagHelpersWithWeirdlySpacedAttributes_DesignTime.codegen.cs │ │ │ ├── TagHelpersWithWeirdlySpacedAttributes_DesignTime.ir.txt │ │ │ ├── TagHelpersWithWeirdlySpacedAttributes_DesignTime.mappings.txt │ │ │ ├── TagHelpersWithWeirdlySpacedAttributes_Runtime.codegen.cs │ │ │ ├── TagHelpersWithWeirdlySpacedAttributes_Runtime.ir.txt │ │ │ ├── Tags.cshtml │ │ │ ├── Tags_DesignTime.codegen.cs │ │ │ ├── Tags_DesignTime.codegen.html │ │ │ ├── Tags_DesignTime.diagnostics.txt │ │ │ ├── Tags_DesignTime.ir.txt │ │ │ ├── Tags_DesignTime.mappings.txt │ │ │ ├── Tags_Runtime.codegen.cs │ │ │ ├── Tags_Runtime.diagnostics.txt │ │ │ ├── Tags_Runtime.ir.txt │ │ │ ├── Templates.cshtml │ │ │ ├── Templates_DesignTime.codegen.cs │ │ │ ├── Templates_DesignTime.codegen.html │ │ │ ├── Templates_DesignTime.ir.txt │ │ │ ├── Templates_DesignTime.mappings.txt │ │ │ ├── Templates_Runtime.codegen.cs │ │ │ ├── Templates_Runtime.ir.txt │ │ │ ├── TransitionsInTagHelperAttributes.cshtml │ │ │ ├── TransitionsInTagHelperAttributes_DesignTime.codegen.cs │ │ │ ├── TransitionsInTagHelperAttributes_DesignTime.diagnostics.txt │ │ │ ├── TransitionsInTagHelperAttributes_DesignTime.ir.txt │ │ │ ├── TransitionsInTagHelperAttributes_DesignTime.mappings.txt │ │ │ ├── TransitionsInTagHelperAttributes_Runtime.codegen.cs │ │ │ ├── TransitionsInTagHelperAttributes_Runtime.diagnostics.txt │ │ │ ├── TransitionsInTagHelperAttributes_Runtime.ir.txt │ │ │ ├── UnfinishedExpressionInCode.cshtml │ │ │ ├── UnfinishedExpressionInCode_DesignTime.codegen.cs │ │ │ ├── UnfinishedExpressionInCode_DesignTime.codegen.html │ │ │ ├── UnfinishedExpressionInCode_DesignTime.ir.txt │ │ │ ├── UnfinishedExpressionInCode_DesignTime.mappings.txt │ │ │ ├── UnfinishedExpressionInCode_Runtime.codegen.cs │ │ │ ├── UnfinishedExpressionInCode_Runtime.ir.txt │ │ │ ├── Usings.cshtml │ │ │ ├── Usings_DesignTime.codegen.cs │ │ │ ├── Usings_DesignTime.codegen.html │ │ │ ├── Usings_DesignTime.ir.txt │ │ │ ├── Usings_DesignTime.mappings.txt │ │ │ ├── Usings_Runtime.codegen.cs │ │ │ └── Usings_Runtime.ir.txt │ │ ├── ComponentDesignTimeCodeGenerationTest │ │ │ ├── AsyncEventHandler_OnElement_ActionEventArgs_Lambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── AsyncEventHandler_OnElement_ActionEventArgs_MethodGroup │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── AsyncEventHandler_OnElement_Action_Lambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── AsyncEventHandler_OnElement_Action_MethodGroup │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_EventCallback_SpecifiesValueAndExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_EventCallback_SpecifiesValueAndExpression_Generic │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_EventCallback_SpecifiesValueAndExpression_NestedGeneric │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_EventCallback_SpecifiesValue_WithMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_EventCallback_TypeChecked_WithMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_SpecifiesValueAndChangeEvent_WithMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_SpecifiesValueAndChangeEvent_WithoutMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_SpecifiesValueAndExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_SpecifiesValueAndExpression_Generic │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_SpecifiesValue_WithMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_SpecifiesValue_WithoutMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_TypeChecked_WithMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_ActionLambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_AsyncLambdaProducesError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_EventCallback │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_EventCallback_ReceivesAction │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_EventCallback_ReceivesFunction │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_TaskReturningDelegate │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_TaskReturningLambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_ActionLambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_EventCallback │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_EventCallback_ReceivesAction │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_EventCallback_ReceivesFunction │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_ProducesErrorOnOlderLanguageVersions │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_TaskReturningDelegate │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_TaskReturningLambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithStringAttribute_DoesNotUseStringSyntax │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElementFallback_WithCulture │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElementFallback_WithFormat_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElementFallback_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElementWithCulture │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElementWithSuffix_OverridesEvent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElementWithSuffix_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_MixingBindAndParamBindSet │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_MixingBindValueWithGetSet │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_MixingBindWithoutSuffixAndParamBindSetWithSuffix │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_MixingSetWithAfter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WithBindAfterAndSuffix │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WithEventAsExplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WithEventAsExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WithGetSetAndSuffix │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WithStringAttribute_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WithoutCloseTag │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_ExplicitType_WithAfter_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_ExplicitType_WithGetSet_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_ExplicitType_WithGetSet_EventCallback │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_ExplicitType_WithGetSet_Function │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_InferredType_WithAfter_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_InferredType_WithGetSet_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_InferredType_WithGetSet_EventCallback │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_InferredType_WithGetSet_Function │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToInputElementWithDefaultCulture │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToInputElementWithDefaultCulture_Override │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BodyAndAttributeChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BodyAndExplicitChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputCheckbox_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputText_CanOverrideEvent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputText_WithFormatFromProperty_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputText_WithFormat_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputText_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithDefaultCultureAndDefaultFormat_Override │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithDefaultFormat │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithDefaultFormat_Override │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithSuffix │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithSuffix_CanOverrideEvent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithoutType_IsCaseSensitive │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithoutType_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CanProduceLinePragmasForComponentWithRenderFragment │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_CombiningMultipleAncestors │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_Explicit │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_ExplicitOverride │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_GenericChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_GenericLambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_Inferred_MultipleConstraints │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_Inferred_MultipleConstraints_ClassesAndInterfaces │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_Inferred_MultipleConstraints_GenericClassConstraints │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_Inferred_WithConstraints │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_Multilayer │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_MultipleTypes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_NotCascaded_CreatesError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_NotCascaded_Explicit │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_NotCascaded_Inferred │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_Override │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_Override_Multilayer │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_Partial_CreatesError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_WithSplatAndKey │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_WithUnrelatedType_CreatesError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_Generic │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_GenericBind │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_GenericBindWeaklyTyped │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_GenericBindWeaklyTyped_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_GenericBind_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_GenericChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_GenericChildContent_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_GenericWeaklyTypedAttribute │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_GenericWeaklyTypedAttribute_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_Generic_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_Generic_TypeInference_Multiple │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_InFunctionsDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_InLocalFunction │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_MultipleGenerics │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_MultipleGenerics_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_NonGenericParameterizedChildContent_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_Simple │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithElementOnlyChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithExplicitChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithExplicitEventHandler │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_WithExplicitGenericChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_WithExplicitStringParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_WithGenericChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_WithGenericChildContent_SetsParameterName │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_WithGenericChildContent_SetsParameterNameOnComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_WithLambdaEventHandler │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_WithNonPropertyAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_WithPageDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_WithParameters │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_WithWeaklyTypeEventHandler │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildContent_FromAnotherNamespace │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ComponentImports │ │ │ │ ├── _Imports.codegen.cs │ │ │ │ ├── _Imports.diagnostics.txt │ │ │ │ ├── _Imports.ir.txt │ │ │ │ └── _Imports.mappings.txt │ │ │ ├── ComponentParameter_TypeMismatch_ReportsDiagnostic │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ComponentWithConstrainedTypeParameters │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ ├── TestComponent.mappings.txt │ │ │ │ ├── UseTestComponent.codegen.cs │ │ │ │ ├── UseTestComponent.ir.txt │ │ │ │ └── UseTestComponent.mappings.txt │ │ │ ├── ComponentWithConstrainedTypeParameters_WithSemicolon │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ ├── TestComponent.mappings.txt │ │ │ │ ├── UseTestComponent.codegen.cs │ │ │ │ ├── UseTestComponent.ir.txt │ │ │ │ └── UseTestComponent.mappings.txt │ │ │ ├── ComponentWithDecimalParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ComponentWithDynamicParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ComponentWithTupleParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ComponentWithTypeParameterArray │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ ├── TestComponent.mappings.txt │ │ │ │ ├── UseTestComponent.codegen.cs │ │ │ │ ├── UseTestComponent.ir.txt │ │ │ │ └── UseTestComponent.mappings.txt │ │ │ ├── ComponentWithTypeParameterValueTuple │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ ├── TestComponent.mappings.txt │ │ │ │ ├── UseTestComponent.codegen.cs │ │ │ │ ├── UseTestComponent.ir.txt │ │ │ │ └── UseTestComponent.mappings.txt │ │ │ ├── ComponentWithTypeParameterValueTupleGloballyQualifiedTypes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ComponentWithTypeParameters │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ComponentWithTypeParameters_WithSemicolon │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_IgnoresStaticAndAliasUsings │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_MatchingIsCaseSensitive │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_MultipleComponentsDifferByCase │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_NamespaceDirective_InImports │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_NamespaceDirective_OverrideImports │ │ │ │ ├── Counter.codegen.cs │ │ │ │ ├── Counter.ir.txt │ │ │ │ └── Counter.mappings.txt │ │ │ ├── Component_PreserveWhitespaceDirective_InImports │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_PreserveWhitespaceDirective_OverrideImports │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_TextTagsAreNotRendered │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithCssScope │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithDocType │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredChildContent_NoValueSpecified │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredChildContent_ValueSpecified │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredChildContent_ValueSpecifiedAsText_WithoutName │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredChildContent_ValueSpecified_WithoutName │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredNamedChildContent_NoValueSpecified │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredNamedChildContent_ValueSpecified │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredParameter_NoValueSpecified │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredParameter_ValueSpecified │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredParameter_ValuesSpecifiedUsingSplatting │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithFullyQualifiedTagNames │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithImplicitLambdaEventHandler │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithImportsFile │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithKey │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithKey_WithChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithNamespaceDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithNullableActionParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithNullableRenderFragmentParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithPreserveWhitespaceDirective_False │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithPreserveWhitespaceDirective_True │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithRef │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithRef_WithChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithSplat │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithSplat_ExplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithSplat_GenericTypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithSplat_ImplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithUsingDirectives │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithUsingDirectives_AmbiguousImport │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DataDashAttribute_ExplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DataDashAttribute_ImplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateComponentParameters_IsAnError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── DuplicateComponentParameters_IsAnError_BindMessage │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateComponentParameters_IsAnError_BindMessageChanged │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateComponentParameters_IsAnError_BindMessageExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateComponentParameters_IsAnError_Multiple │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── DuplicateComponentParameters_IsAnError_WeaklyTyped │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── DuplicateMarkupAttributes_DifferentCasing_IsAnError_BindValue │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateMarkupAttributes_IsAnError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── DuplicateMarkupAttributes_IsAnError_BindOnInput │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateMarkupAttributes_IsAnError_BindValue │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateMarkupAttributes_IsAnError_EventHandler │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateMarkupAttributes_Multiple_IsAnError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ElementWithUppercaseTagName_CanHideWarningWithBang │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Element_WithKey │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithKey_AndOtherAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithKey_AttributeNameIsCaseSensitive │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithRef │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithRef_AndOtherAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithRef_AttributeNameIsCaseSensitive │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Element_WithSplat │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithSplat_AttributeNameIsCaseSensitive │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithSplat_ExplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithSplat_ImplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallbackOfT_GenericComponent_ExplicitType │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallbackOfT_GenericComponent_ExplicitType_MethodGroup │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallbackOfT_GenericComponent_MissingTypeParameterBinding_01 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallbackOfT_GenericComponent_MissingTypeParameterBinding_02 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallbackOfT_Explicitly │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallbackOfT_Implicitly_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallbackOfT_Implicitly_ActionOfT │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallbackOfT_Implicitly_FuncOfTTask │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallbackOfT_Implicitly_FuncOfTask │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallbackOfT_Implicitly_TypeMismatch │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallback_Explicitly │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallback_Implicitly_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallback_Implicitly_ActionOfObject │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallback_Implicitly_FuncOfTask │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallback_Implicitly_FuncOfobjectTask │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandlerTagHelper_EscapeQuotes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── EventHandler_AttributeNameIsCaseSensitive │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_ArbitraryEventName_WithEventArgsMethodGroup │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_WithDelegate │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_WithEventArgsLambdaDelegate │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_WithEventArgsMethodGroup │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_WithLambdaDelegate │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_WithNoArgMethodGroup │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_WithNoArgsLambdaDelegate │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_WithString │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_WithoutCloseTag │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_PreventDefault_Duplicates │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_PreventDefault_StopPropagation │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_PreventDefault_StopPropagation_Minimized │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_WithDelegate_PreventDefault │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericBindToGenericComponent_ExplicitType_WithGetSet_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericBindToGenericComponent_ExplicitType_WithGetSet_EventCallback │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericBindToGenericComponent_ExplicitType_WithGetSet_Function │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponentBindToGenericComponent_ExplicitType_WithAfter_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponentBindToGenericComponent_InferredType_WithAfter_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponentBindToGenericComponent_InferredType_WithGetSet_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponentBindToGenericComponent_InferredType_WithGetSet_EventCallback │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponentBindToGenericComponent_InferredType_WithGetSet_Function │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_GenericEventCallbackWithGenericTypeParameter_NestedTypeExplicit │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_GenericEventCallbackWithGenericTypeParameter_NestedTypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_GenericEventCallbackWithGenericTypeParameter_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_GenericEventCallbackWithNestedGenericTypeParameter_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_GenericEventCallback_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_NestedGenericEventCallback_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_NonGenericEventCallback_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_NonGenericParameter_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_NonPrimitiveType │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_NonPrimitiveTypeRenderFragment │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_WithComponentRef_CreatesDiagnostic │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_WithComponentRef_TypeInference_CreatesDiagnostic │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_WithFullyQualifiedTagName │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_WithKey │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_WithKey_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── IncludesMinimizedAttributeValueParameterBeforeLanguageVersion5 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── LeadingWhiteSpace_WithCSharpExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── LeadingWhiteSpace_WithComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── LeadingWhiteSpace_WithDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Legacy_3_1_LeadingWhiteSpace_WithCSharpExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Legacy_3_1_LeadingWhiteSpace_WithComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Legacy_3_1_LeadingWhiteSpace_WithDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Legacy_3_1_TrailingWhiteSpace_WithCSharpExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Legacy_3_1_TrailingWhiteSpace_WithComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Legacy_3_1_TrailingWhiteSpace_WithDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Legacy_3_1_WhiteSpace_InMarkupInFunctionsBlock │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Legacy_3_1_WhiteSpace_InsideAttribute_InMarkupBlock │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Legacy_3_1_Whitespace_BetweenElementAndFunctions │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── MarkupComment_IsNotIncluded │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── MultipleChildContentMatchingComponentName │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── MultipleExplictChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── NonGenericComponent_WithGenericEventHandler │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── OmitsMinimizedAttributeValueParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ProducesEnhancedLinePragmaWhenNecessary │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ProducesStandardLinePragmaForCSharpCode │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_AsComponentParameter_MixedContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_ContainsComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_FollowedByComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_Generic_AsComponentParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_Generic_InImplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_InCodeBlock │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_InExplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_NonGeneric_AsComponentParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_NonGeneric_InImplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Regression_597 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Regression_609 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Regression_772 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Regression_773 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Regression_784 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ScriptTag_WithErrorSuppressed │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── SingleLineControlFlowStatements_InCodeBlock │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── SingleLineControlFlowStatements_InCodeDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── TrailingWhiteSpace_WithCSharpExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── TrailingWhiteSpace_WithComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── TrailingWhiteSpace_WithDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── WhiteSpace_InMarkupInFunctionsBlock │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── WhiteSpace_InsideAttribute_InMarkupBlock │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── WhiteSpace_WithPreserveWhitespace │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ └── Whitespace_BetweenElementAndFunctions │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ ├── ComponentRuntimeCodeGenerationTest │ │ │ ├── AsyncEventHandler_OnElement_ActionEventArgs_Lambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── AsyncEventHandler_OnElement_ActionEventArgs_MethodGroup │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── AsyncEventHandler_OnElement_Action_Lambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── AsyncEventHandler_OnElement_Action_MethodGroup │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_EventCallback_SpecifiesValueAndExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_EventCallback_SpecifiesValueAndExpression_Generic │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_EventCallback_SpecifiesValueAndExpression_NestedGeneric │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_EventCallback_SpecifiesValue_WithMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_EventCallback_TypeChecked_WithMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_SpecifiesValueAndChangeEvent_WithMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_SpecifiesValueAndChangeEvent_WithoutMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_SpecifiesValueAndExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_SpecifiesValueAndExpression_Generic │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_SpecifiesValue_WithMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_SpecifiesValue_WithoutMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_TypeChecked_WithMatchingProperties │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_ActionLambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_AsyncLambdaProducesError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_EventCallback │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_EventCallback_ReceivesAction │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_EventCallback_ReceivesFunction │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_TaskReturningDelegate │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithAfter_TaskReturningLambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_ActionLambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_EventCallback │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_EventCallback_ReceivesAction │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_EventCallback_ReceivesFunction │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_ProducesErrorOnOlderLanguageVersions │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_TaskReturningDelegate │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithGetSet_TaskReturningLambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToComponent_WithStringAttribute_DoesNotUseStringSyntax │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElementFallback_WithCulture │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElementFallback_WithFormat_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElementFallback_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElementWithCulture │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElementWithSuffix_OverridesEvent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElementWithSuffix_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_MixingBindAndParamBindSet │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_MixingBindValueWithGetSet │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_MixingBindWithoutSuffixAndParamBindSetWithSuffix │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_MixingSetWithAfter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WithBindAfterAndSuffix │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WithEventAsExplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WithEventAsExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WithGetSetAndSuffix │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WithStringAttribute_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WithoutCloseTag │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToElement_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_ExplicitType_WithAfter_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_ExplicitType_WithGetSet_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_ExplicitType_WithGetSet_EventCallback │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_ExplicitType_WithGetSet_Function │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_InferredType_WithAfter_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_InferredType_WithGetSet_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_InferredType_WithGetSet_EventCallback │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToGenericComponent_InferredType_WithGetSet_Function │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToInputElementWithDefaultCulture │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BindToInputElementWithDefaultCulture_Override │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BodyAndAttributeChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BodyAndExplicitChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputCheckbox_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputText_CanOverrideEvent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputText_WithFormatFromProperty_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputText_WithFormat_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputText_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithDefaultCultureAndDefaultFormat_Override │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithDefaultFormat │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithDefaultFormat_Override │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithSuffix │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithSuffix_CanOverrideEvent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithoutType_IsCaseSensitive │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── BuiltIn_BindToInputWithoutType_WritesAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CanProduceLinePragmasForComponentWithRenderFragment │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_CombiningMultipleAncestors │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_Explicit │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_ExplicitOverride │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_GenericChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_GenericLambda │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_Inferred_MultipleConstraints │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_Inferred_MultipleConstraints_ClassesAndInterfaces │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_Inferred_MultipleConstraints_GenericClassConstraints │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_Inferred_WithConstraints │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_Multilayer │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_MultipleTypes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_NotCascaded_CreatesError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_NotCascaded_Explicit │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_NotCascaded_Inferred │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_Override │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_Override_Multilayer │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_Partial_CreatesError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── CascadingGenericInference_WithSplatAndKey │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── CascadingGenericInference_WithUnrelatedType_CreatesError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_Generic │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_GenericBind │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_GenericBindWeaklyTyped │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_GenericBindWeaklyTyped_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_GenericBind_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_GenericChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_GenericChildContent_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_GenericWeaklyTypedAttribute │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_GenericWeaklyTypedAttribute_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_Generic_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_Generic_TypeInference_Multiple │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_InFunctionsDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_InLocalFunction │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_MultipleGenerics │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_MultipleGenerics_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_NonGenericParameterizedChildContent_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_Simple │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithElementOnlyChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithExplicitChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithExplicitEventHandler │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_WithExplicitGenericChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithExplicitStringParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithGenericChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithGenericChildContent_SetsParameterName │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithGenericChildContent_SetsParameterNameOnComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithLambdaEventHandler │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildComponent_WithNonPropertyAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithPageDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithParameters │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ChildComponent_WithWeaklyTypeEventHandler │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ChildContent_FromAnotherNamespace │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ComponentImports │ │ │ │ ├── _Imports.codegen.cs │ │ │ │ ├── _Imports.diagnostics.txt │ │ │ │ └── _Imports.ir.txt │ │ │ ├── ComponentParameter_TypeMismatch_ReportsDiagnostic │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ComponentWithConstrainedTypeParameters │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ ├── TestComponent.mappings.txt │ │ │ │ ├── UseTestComponent.codegen.cs │ │ │ │ ├── UseTestComponent.ir.txt │ │ │ │ └── UseTestComponent.mappings.txt │ │ │ ├── ComponentWithConstrainedTypeParameters_WithSemicolon │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ ├── TestComponent.mappings.txt │ │ │ │ ├── UseTestComponent.codegen.cs │ │ │ │ ├── UseTestComponent.ir.txt │ │ │ │ └── UseTestComponent.mappings.txt │ │ │ ├── ComponentWithDecimalParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ComponentWithDynamicParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ComponentWithTupleParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ComponentWithTypeParameterArray │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ ├── TestComponent.mappings.txt │ │ │ │ ├── UseTestComponent.codegen.cs │ │ │ │ ├── UseTestComponent.ir.txt │ │ │ │ └── UseTestComponent.mappings.txt │ │ │ ├── ComponentWithTypeParameterValueTuple │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ ├── TestComponent.mappings.txt │ │ │ │ ├── UseTestComponent.codegen.cs │ │ │ │ ├── UseTestComponent.ir.txt │ │ │ │ └── UseTestComponent.mappings.txt │ │ │ ├── ComponentWithTypeParameterValueTupleGloballyQualifiedTypes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ComponentWithTypeParameters │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ComponentWithTypeParameters_WithSemicolon │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_IgnoresStaticAndAliasUsings │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_MatchingIsCaseSensitive │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_MultipleComponentsDifferByCase │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_NamespaceDirective_InImports │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_NamespaceDirective_OverrideImports │ │ │ │ ├── Counter.codegen.cs │ │ │ │ └── Counter.ir.txt │ │ │ ├── Component_PreserveWhitespaceDirective_InImports │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_PreserveWhitespaceDirective_OverrideImports │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_TextTagsAreNotRendered │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithCssScope │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithDocType │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredChildContent_NoValueSpecified │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredChildContent_ValueSpecified │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredChildContent_ValueSpecifiedAsText_WithoutName │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredChildContent_ValueSpecified_WithoutName │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredNamedChildContent_NoValueSpecified │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredNamedChildContent_ValueSpecified │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredParameter_NoValueSpecified │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredParameter_ValueSpecified │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithEditorRequiredParameter_ValuesSpecifiedUsingSplatting │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithFullyQualifiedTagNames │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithImplicitLambdaEventHandler │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithImportsFile │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithKey │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithKey_WithChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithNamespaceDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithNullableActionParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithNullableRenderFragmentParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithPreserveWhitespaceDirective_False │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithPreserveWhitespaceDirective_True │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithRef │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithRef_WithChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithSplat │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithSplat_ExplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithSplat_GenericTypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithSplat_ImplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Component_WithUsingDirectives │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Component_WithUsingDirectives_AmbiguousImport │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── DataDashAttribute_ExplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DataDashAttribute_ImplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateComponentParameters_IsAnError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── DuplicateComponentParameters_IsAnError_BindMessage │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateComponentParameters_IsAnError_BindMessageChanged │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateComponentParameters_IsAnError_BindMessageExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateComponentParameters_IsAnError_Multiple │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── DuplicateComponentParameters_IsAnError_WeaklyTyped │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── DuplicateMarkupAttributes_DifferentCasing_IsAnError_BindValue │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateMarkupAttributes_IsAnError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── DuplicateMarkupAttributes_IsAnError_BindOnInput │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateMarkupAttributes_IsAnError_BindValue │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── DuplicateMarkupAttributes_IsAnError_EventHandler │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── DuplicateMarkupAttributes_Multiple_IsAnError │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ElementWithUppercaseTagName_CanHideWarningWithBang │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Element_WithKey │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithKey_AndOtherAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithKey_AttributeNameIsCaseSensitive │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithRef │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithRef_AndOtherAttributes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithRef_AttributeNameIsCaseSensitive │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Element_WithSplat │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithSplat_AttributeNameIsCaseSensitive │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithSplat_ExplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Element_WithSplat_ImplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallbackOfT_GenericComponent_ExplicitType │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallbackOfT_GenericComponent_ExplicitType_MethodGroup │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallbackOfT_GenericComponent_MissingTypeParameterBinding_01 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallbackOfT_GenericComponent_MissingTypeParameterBinding_02 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallbackOfT_Explicitly │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallbackOfT_Implicitly_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallbackOfT_Implicitly_ActionOfT │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallbackOfT_Implicitly_FuncOfTTask │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallbackOfT_Implicitly_FuncOfTask │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallbackOfT_Implicitly_TypeMismatch │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallback_Explicitly │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallback_Implicitly_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallback_Implicitly_ActionOfObject │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallback_Implicitly_FuncOfTask │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventCallback_CanPassEventCallback_Implicitly_FuncOfobjectTask │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandlerTagHelper_EscapeQuotes │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── EventHandler_AttributeNameIsCaseSensitive │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_ArbitraryEventName_WithEventArgsMethodGroup │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_WithDelegate │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_WithEventArgsLambdaDelegate │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── EventHandler_OnElement_WithEventArgsMethodGroup │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_WithLambdaDelegate │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── EventHandler_OnElement_WithNoArgMethodGroup │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_OnElement_WithNoArgsLambdaDelegate │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── EventHandler_OnElement_WithString │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── EventHandler_OnElement_WithoutCloseTag │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_PreventDefault_Duplicates │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── EventHandler_PreventDefault_StopPropagation │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── EventHandler_PreventDefault_StopPropagation_Minimized │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── EventHandler_WithDelegate_PreventDefault │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericBindToGenericComponent_ExplicitType_WithGetSet_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericBindToGenericComponent_ExplicitType_WithGetSet_EventCallback │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericBindToGenericComponent_ExplicitType_WithGetSet_Function │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponentBindToGenericComponent_ExplicitType_WithAfter_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponentBindToGenericComponent_InferredType_WithAfter_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponentBindToGenericComponent_InferredType_WithGetSet_Action │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponentBindToGenericComponent_InferredType_WithGetSet_EventCallback │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponentBindToGenericComponent_InferredType_WithGetSet_Function │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_GenericEventCallbackWithGenericTypeParameter_NestedTypeExplicit │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── GenericComponent_GenericEventCallbackWithGenericTypeParameter_NestedTypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_GenericEventCallbackWithGenericTypeParameter_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── GenericComponent_GenericEventCallbackWithNestedGenericTypeParameter_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── GenericComponent_GenericEventCallback_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── GenericComponent_NestedGenericEventCallback_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── GenericComponent_NonGenericEventCallback_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── GenericComponent_NonGenericParameter_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_NonPrimitiveType │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── GenericComponent_NonPrimitiveTypeRenderFragment │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── GenericComponent_WithComponentRef_CreatesDiagnostic │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_WithComponentRef_TypeInference_CreatesDiagnostic │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_WithFullyQualifiedTagName │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── GenericComponent_WithKey │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── GenericComponent_WithKey_TypeInference │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── IncludesMinimizedAttributeValueParameterBeforeLanguageVersion5 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── LeadingWhiteSpace_WithCSharpExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── LeadingWhiteSpace_WithComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── LeadingWhiteSpace_WithDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Legacy_3_1_LeadingWhiteSpace_WithCSharpExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Legacy_3_1_LeadingWhiteSpace_WithComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Legacy_3_1_LeadingWhiteSpace_WithDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Legacy_3_1_TrailingWhiteSpace_WithCSharpExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Legacy_3_1_TrailingWhiteSpace_WithComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Legacy_3_1_TrailingWhiteSpace_WithDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Legacy_3_1_WhiteSpace_InMarkupInFunctionsBlock │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Legacy_3_1_WhiteSpace_InsideAttribute_InMarkupBlock │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Legacy_3_1_Whitespace_BetweenElementAndFunctions │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── MarkupComment_IsNotIncluded │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── MultipleChildContentMatchingComponentName │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── MultipleExplictChildContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── NonGenericComponent_WithGenericEventHandler │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── OmitsMinimizedAttributeValueParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── ProducesEnhancedLinePragmaWhenNecessary │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ProducesStandardLinePragmaForCSharpCode │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_AsComponentParameter_MixedContent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_ContainsComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_FollowedByComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_Generic_AsComponentParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_Generic_InImplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_InCodeBlock │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_InExplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_NonGeneric_AsComponentParameter │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── RazorTemplate_NonGeneric_InImplicitExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Regression_597 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Regression_609 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── Regression_772 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.diagnostics.txt │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Regression_773 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── Regression_784 │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── ScriptTag_WithErrorSuppressed │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── SingleLineControlFlowStatements_InCodeBlock │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── SingleLineControlFlowStatements_InCodeDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── TrailingWhiteSpace_WithCSharpExpression │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── TrailingWhiteSpace_WithComponent │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── TrailingWhiteSpace_WithDirective │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── WhiteSpace_InMarkupInFunctionsBlock │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ ├── WhiteSpace_InsideAttribute_InMarkupBlock │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ └── TestComponent.ir.txt │ │ │ ├── WhiteSpace_WithPreserveWhitespace │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ │ └── Whitespace_BetweenElementAndFunctions │ │ │ │ ├── TestComponent.codegen.cs │ │ │ │ ├── TestComponent.ir.txt │ │ │ │ └── TestComponent.mappings.txt │ │ ├── ExtensibleDirectiveTest │ │ │ ├── NamespaceToken.codegen.cs │ │ │ ├── NamespaceToken.cshtml │ │ │ ├── NamespaceToken.ir.txt │ │ │ └── NamespaceToken.mappings.txt │ │ ├── HtmlAttributeIntegrationTest │ │ │ ├── HtmlWithConditionalAttribute.cshtml │ │ │ ├── HtmlWithConditionalAttribute.ir.txt │ │ │ ├── HtmlWithDataDashAttribute.cshtml │ │ │ └── HtmlWithDataDashAttribute.ir.txt │ │ └── TagHelpersIntegrationTest │ │ │ ├── NestedTagHelpers.cshtml │ │ │ ├── NestedTagHelpers.ir.txt │ │ │ ├── SimpleTagHelpers.cshtml │ │ │ ├── SimpleTagHelpers.ir.txt │ │ │ ├── TagHelpersWithBoundAttributes.cshtml │ │ │ └── TagHelpersWithBoundAttributes.ir.txt │ ├── ParserTests │ │ ├── CSharpAutoCompleteTest │ │ │ ├── FunctionsDirectiveAutoCompleteAtEOF.cspans.txt │ │ │ ├── FunctionsDirectiveAutoCompleteAtEOF.diag.txt │ │ │ ├── FunctionsDirectiveAutoCompleteAtEOF.stree.txt │ │ │ ├── FunctionsDirectiveAutoCompleteAtStartOfFile.cspans.txt │ │ │ ├── FunctionsDirectiveAutoCompleteAtStartOfFile.diag.txt │ │ │ ├── FunctionsDirectiveAutoCompleteAtStartOfFile.stree.txt │ │ │ ├── SectionDirectiveAutoCompleteAtEOF.cspans.txt │ │ │ ├── SectionDirectiveAutoCompleteAtEOF.diag.txt │ │ │ ├── SectionDirectiveAutoCompleteAtEOF.stree.txt │ │ │ ├── SectionDirectiveAutoCompleteAtStartOfFile.cspans.txt │ │ │ ├── SectionDirectiveAutoCompleteAtStartOfFile.diag.txt │ │ │ ├── SectionDirectiveAutoCompleteAtStartOfFile.stree.txt │ │ │ ├── VerbatimBlockAutoCompleteAtEOF.cspans.txt │ │ │ ├── VerbatimBlockAutoCompleteAtEOF.diag.txt │ │ │ ├── VerbatimBlockAutoCompleteAtEOF.stree.txt │ │ │ ├── VerbatimBlockAutoCompleteAtStartOfFile.cspans.txt │ │ │ ├── VerbatimBlockAutoCompleteAtStartOfFile.diag.txt │ │ │ └── VerbatimBlockAutoCompleteAtStartOfFile.stree.txt │ │ ├── CSharpBlockTest │ │ │ ├── AcceptsElseIfWithNoCondition.cspans.txt │ │ │ ├── AcceptsElseIfWithNoCondition.stree.txt │ │ │ ├── AcceptsTrailingDotIntoImplicitExpressionWhenEmbeddedInCode.cspans.txt │ │ │ ├── AcceptsTrailingDotIntoImplicitExpressionWhenEmbeddedInCode.stree.txt │ │ │ ├── AllowsEmptyBlockStatement.cspans.txt │ │ │ ├── AllowsEmptyBlockStatement.stree.txt │ │ │ ├── BalancingBracketsIgnoresStringLiteralCharactersAndBrackets.cspans.txt │ │ │ ├── BalancingBracketsIgnoresStringLiteralCharactersAndBrackets.stree.txt │ │ │ ├── BalancingBracketsIgnoresStringLiteralCharactersAndBracketsInsideBlockComments.cspans.txt │ │ │ ├── BalancingBracketsIgnoresStringLiteralCharactersAndBracketsInsideBlockComments.stree.txt │ │ │ ├── CSharpBlock_SingleLineControlFlowStatement.cspans.txt │ │ │ ├── CSharpBlock_SingleLineControlFlowStatement.stree.txt │ │ │ ├── CSharpBlock_SingleLineControlFlowStatement_Error.cspans.txt │ │ │ ├── CSharpBlock_SingleLineControlFlowStatement_Error.diag.txt │ │ │ ├── CSharpBlock_SingleLineControlFlowStatement_Error.stree.txt │ │ │ ├── CapturesNewlineAfterUsing.cspans.txt │ │ │ ├── CapturesNewlineAfterUsing.stree.txt │ │ │ ├── CorrectlyParsesDoWhileBlock.cspans.txt │ │ │ ├── CorrectlyParsesDoWhileBlock.stree.txt │ │ │ ├── CorrectlyParsesDoWhileBlockMissingSemicolon.cspans.txt │ │ │ ├── CorrectlyParsesDoWhileBlockMissingSemicolon.stree.txt │ │ │ ├── CorrectlyParsesDoWhileBlockMissingWhileClauseEntirely.cspans.txt │ │ │ ├── CorrectlyParsesDoWhileBlockMissingWhileClauseEntirely.stree.txt │ │ │ ├── CorrectlyParsesDoWhileBlockMissingWhileCondition.cspans.txt │ │ │ ├── CorrectlyParsesDoWhileBlockMissingWhileCondition.stree.txt │ │ │ ├── CorrectlyParsesDoWhileBlockMissingWhileConditionWithSemicolon.cspans.txt │ │ │ ├── CorrectlyParsesDoWhileBlockMissingWhileConditionWithSemicolon.stree.txt │ │ │ ├── CorrectlyParsesMarkupInDoWhileBlock.cspans.txt │ │ │ ├── CorrectlyParsesMarkupInDoWhileBlock.stree.txt │ │ │ ├── DoesNotAllowMultipleFinallyBlocks.cspans.txt │ │ │ ├── DoesNotAllowMultipleFinallyBlocks.stree.txt │ │ │ ├── DoesNotParseOnSwitchCharacterNotFollowedByOpenAngleOrColon.cspans.txt │ │ │ ├── DoesNotParseOnSwitchCharacterNotFollowedByOpenAngleOrColon.stree.txt │ │ │ ├── DoesntCaptureWhitespaceAfterUsing.cspans.txt │ │ │ ├── DoesntCaptureWhitespaceAfterUsing.stree.txt │ │ │ ├── HasErrorsIfNamespaceAliasMissingSemicolon.cspans.txt │ │ │ ├── HasErrorsIfNamespaceAliasMissingSemicolon.stree.txt │ │ │ ├── HasErrorsIfNamespaceImportMissingSemicolon.cspans.txt │ │ │ ├── HasErrorsIfNamespaceImportMissingSemicolon.stree.txt │ │ │ ├── LocalFunctionsWithGenerics.cspans.txt │ │ │ ├── LocalFunctionsWithGenerics.stree.txt │ │ │ ├── LocalFunctionsWithRazor.cspans.txt │ │ │ ├── LocalFunctionsWithRazor.stree.txt │ │ │ ├── NestedCodeBlockWithAtDoesntCauseError.cspans.txt │ │ │ ├── NestedCodeBlockWithAtDoesntCauseError.stree.txt │ │ │ ├── NestedCodeBlockWithCSharpAt.cspans.txt │ │ │ ├── NestedCodeBlockWithCSharpAt.stree.txt │ │ │ ├── NestedCodeBlockWithMarkupSetsDotAsMarkup.cspans.txt │ │ │ ├── NestedCodeBlockWithMarkupSetsDotAsMarkup.stree.txt │ │ │ ├── ParsersCanNestRecursively.cspans.txt │ │ │ ├── ParsersCanNestRecursively.stree.txt │ │ │ ├── ParsesElseIfBranchesOfIfStatement.cspans.txt │ │ │ ├── ParsesElseIfBranchesOfIfStatement.stree.txt │ │ │ ├── ParsesExpressionOnSwitchCharacterFollowedByIdentifierStart.cspans.txt │ │ │ ├── ParsesExpressionOnSwitchCharacterFollowedByIdentifierStart.stree.txt │ │ │ ├── ParsesExpressionOnSwitchCharacterFollowedByOpenParen.cspans.txt │ │ │ ├── ParsesExpressionOnSwitchCharacterFollowedByOpenParen.stree.txt │ │ │ ├── ParsesMultipleElseIfBranchesOfIfStatement.cspans.txt │ │ │ ├── ParsesMultipleElseIfBranchesOfIfStatement.stree.txt │ │ │ ├── ParsesMultipleElseIfBranchesOfIfStatementFollowedByOneElseBranch.cspans.txt │ │ │ ├── ParsesMultipleElseIfBranchesOfIfStatementFollowedByOneElseBranch.stree.txt │ │ │ ├── ParsesNamespaceAliasWithSemicolonForUsingKeywordIfIsInValidFormat.cspans.txt │ │ │ ├── ParsesNamespaceAliasWithSemicolonForUsingKeywordIfIsInValidFormat.stree.txt │ │ │ ├── ParsesNamespaceImportWithSemicolonForUsingKeywordIfIsInValidFormat.cspans.txt │ │ │ ├── ParsesNamespaceImportWithSemicolonForUsingKeywordIfIsInValidFormat.stree.txt │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsForKeyword.cspans.txt │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsForKeyword.stree.txt │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsForeachKeyword.cspans.txt │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsForeachKeyword.stree.txt │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsIfKeywordWithNoElseBranches.cspans.txt │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsIfKeywordWithNoElseBranches.stree.txt │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsSwitchKeyword.cspans.txt │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsSwitchKeyword.stree.txt │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsWhileKeyword.cspans.txt │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsWhileKeyword.stree.txt │ │ │ ├── SkipsExprThenBalancesIfFirstIdentifierIsUsingFollowedByParen.cspans.txt │ │ │ ├── SkipsExprThenBalancesIfFirstIdentifierIsUsingFollowedByParen.stree.txt │ │ │ ├── StopsParsingCatchClausesAfterFinallyBlock.cspans.txt │ │ │ ├── StopsParsingCatchClausesAfterFinallyBlock.stree.txt │ │ │ ├── StopsParsingCodeAfterElseBranch.cspans.txt │ │ │ ├── StopsParsingCodeAfterElseBranch.stree.txt │ │ │ ├── StopsParsingIfIfStatementNotFollowedByElse.cspans.txt │ │ │ ├── StopsParsingIfIfStatementNotFollowedByElse.stree.txt │ │ │ ├── SupportsBlockCommentBetweenCatchAndFinallyClause.cspans.txt │ │ │ ├── SupportsBlockCommentBetweenCatchAndFinallyClause.stree.txt │ │ │ ├── SupportsBlockCommentBetweenDoAndWhileClause.cspans.txt │ │ │ ├── SupportsBlockCommentBetweenDoAndWhileClause.stree.txt │ │ │ ├── SupportsBlockCommentBetweenElseIfAndElseClause.cspans.txt │ │ │ ├── SupportsBlockCommentBetweenElseIfAndElseClause.stree.txt │ │ │ ├── SupportsBlockCommentBetweenIfAndElseClause.cspans.txt │ │ │ ├── SupportsBlockCommentBetweenIfAndElseClause.stree.txt │ │ │ ├── SupportsBlockCommentBetweenIfAndElseIfClause.cspans.txt │ │ │ ├── SupportsBlockCommentBetweenIfAndElseIfClause.stree.txt │ │ │ ├── SupportsBlockCommentBetweenTryAndCatchClause.cspans.txt │ │ │ ├── SupportsBlockCommentBetweenTryAndCatchClause.stree.txt │ │ │ ├── SupportsBlockCommentBetweenTryAndFinallyClause.cspans.txt │ │ │ ├── SupportsBlockCommentBetweenTryAndFinallyClause.stree.txt │ │ │ ├── SupportsExceptionLessCatchClauses.cspans.txt │ │ │ ├── SupportsExceptionLessCatchClauses.stree.txt │ │ │ ├── SupportsLineCommentBetweenCatchAndFinallyClause.cspans.txt │ │ │ ├── SupportsLineCommentBetweenCatchAndFinallyClause.stree.txt │ │ │ ├── SupportsLineCommentBetweenDoAndWhileClause.cspans.txt │ │ │ ├── SupportsLineCommentBetweenDoAndWhileClause.stree.txt │ │ │ ├── SupportsLineCommentBetweenElseIfAndElseClause.cspans.txt │ │ │ ├── SupportsLineCommentBetweenElseIfAndElseClause.stree.txt │ │ │ ├── SupportsLineCommentBetweenIfAndElseClause.cspans.txt │ │ │ ├── SupportsLineCommentBetweenIfAndElseClause.stree.txt │ │ │ ├── SupportsLineCommentBetweenIfAndElseIfClause.cspans.txt │ │ │ ├── SupportsLineCommentBetweenIfAndElseIfClause.stree.txt │ │ │ ├── SupportsLineCommentBetweenTryAndCatchClause.cspans.txt │ │ │ ├── SupportsLineCommentBetweenTryAndCatchClause.stree.txt │ │ │ ├── SupportsLineCommentBetweenTryAndFinallyClause.cspans.txt │ │ │ ├── SupportsLineCommentBetweenTryAndFinallyClause.stree.txt │ │ │ ├── SupportsMarkupWithinAdditionalCatchClauses.cspans.txt │ │ │ ├── SupportsMarkupWithinAdditionalCatchClauses.stree.txt │ │ │ ├── SupportsMarkupWithinCatchClause.cspans.txt │ │ │ ├── SupportsMarkupWithinCatchClause.stree.txt │ │ │ ├── SupportsMarkupWithinFinallyClause.cspans.txt │ │ │ ├── SupportsMarkupWithinFinallyClause.stree.txt │ │ │ ├── SupportsMarkupWithinTryClause.cspans.txt │ │ │ ├── SupportsMarkupWithinTryClause.stree.txt │ │ │ ├── SupportsRazorCommentBetweenCatchAndFinallyClause.cspans.txt │ │ │ ├── SupportsRazorCommentBetweenCatchAndFinallyClause.stree.txt │ │ │ ├── SupportsRazorCommentBetweenDoAndWhileClause.cspans.txt │ │ │ ├── SupportsRazorCommentBetweenDoAndWhileClause.stree.txt │ │ │ ├── SupportsRazorCommentBetweenElseIfAndElseClause.cspans.txt │ │ │ ├── SupportsRazorCommentBetweenElseIfAndElseClause.stree.txt │ │ │ ├── SupportsRazorCommentBetweenIfAndElseClause.cspans.txt │ │ │ ├── SupportsRazorCommentBetweenIfAndElseClause.stree.txt │ │ │ ├── SupportsRazorCommentBetweenIfAndElseIfClause.cspans.txt │ │ │ ├── SupportsRazorCommentBetweenIfAndElseIfClause.stree.txt │ │ │ ├── SupportsRazorCommentBetweenTryAndCatchClause.cspans.txt │ │ │ ├── SupportsRazorCommentBetweenTryAndCatchClause.stree.txt │ │ │ ├── SupportsRazorCommentBetweenTryAndFinallyClause.cspans.txt │ │ │ ├── SupportsRazorCommentBetweenTryAndFinallyClause.stree.txt │ │ │ ├── SupportsTryStatementWithFinallyClause.cspans.txt │ │ │ ├── SupportsTryStatementWithFinallyClause.stree.txt │ │ │ ├── SupportsTryStatementWithMultipleCatchClause.cspans.txt │ │ │ ├── SupportsTryStatementWithMultipleCatchClause.stree.txt │ │ │ ├── SupportsTryStatementWithNoAdditionalClauses.cspans.txt │ │ │ ├── SupportsTryStatementWithNoAdditionalClauses.stree.txt │ │ │ ├── SupportsTryStatementWithOneCatchClause.cspans.txt │ │ │ ├── SupportsTryStatementWithOneCatchClause.stree.txt │ │ │ ├── SupportsUsingsNestedWithinOtherBlocks.cspans.txt │ │ │ ├── SupportsUsingsNestedWithinOtherBlocks.stree.txt │ │ │ ├── TerminatesBlockCommentAtEndOfFile.cspans.txt │ │ │ ├── TerminatesBlockCommentAtEndOfFile.diag.txt │ │ │ ├── TerminatesBlockCommentAtEndOfFile.stree.txt │ │ │ ├── TerminatesParenBalancingAtEOF.cspans.txt │ │ │ ├── TerminatesParenBalancingAtEOF.diag.txt │ │ │ ├── TerminatesParenBalancingAtEOF.stree.txt │ │ │ ├── TerminatesSingleLineCommentAtEndOfFile.cspans.txt │ │ │ ├── TerminatesSingleLineCommentAtEndOfFile.diag.txt │ │ │ ├── TerminatesSingleLineCommentAtEndOfFile.stree.txt │ │ │ ├── TerminatesSingleSlashAtEndOfFile.cspans.txt │ │ │ ├── TerminatesSingleSlashAtEndOfFile.diag.txt │ │ │ ├── TerminatesSingleSlashAtEndOfFile.stree.txt │ │ │ ├── TerminatesUsingKeywordAtEOFAndOutputsFileCodeBlock.cspans.txt │ │ │ ├── TerminatesUsingKeywordAtEOFAndOutputsFileCodeBlock.stree.txt │ │ │ ├── ThenBalancesBracesIfFirstIdentifierIsLockKeyword.cspans.txt │ │ │ ├── ThenBalancesBracesIfFirstIdentifierIsLockKeyword.stree.txt │ │ │ ├── TreatsAtSignsAfterFirstPairAsPartOfCSharpStatement.cspans.txt │ │ │ ├── TreatsAtSignsAfterFirstPairAsPartOfCSharpStatement.stree.txt │ │ │ ├── TreatsDoubleAtSignAsEscapeSequenceIfAtStatementStart.cspans.txt │ │ │ ├── TreatsDoubleAtSignAsEscapeSequenceIfAtStatementStart.stree.txt │ │ │ ├── WithDoubleTransitionAtBeginningOfAttributeValue_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionAtBeginningOfAttributeValue_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransitionAtEndOfAttributeValue_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionAtEndOfAttributeValue_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransitionBetweenAttributeValue_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionBetweenAttributeValue_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransitionInAttributeValue_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionInAttributeValue_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransitionInEmail_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionInEmail_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransitionInRegex_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionInRegex_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransitionWithExpressionBlock_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionWithExpressionBlock_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransition_EndOfFile_Throws.cspans.txt │ │ │ ├── WithDoubleTransition_EndOfFile_Throws.diag.txt │ │ │ ├── WithDoubleTransition_EndOfFile_Throws.stree.txt │ │ │ ├── WithUnexpectedTransitionsInAttributeValue_Throws.cspans.txt │ │ │ ├── WithUnexpectedTransitionsInAttributeValue_Throws.diag.txt │ │ │ └── WithUnexpectedTransitionsInAttributeValue_Throws.stree.txt │ │ ├── CSharpErrorTest │ │ │ ├── CapturesWhitespaceToEOLInInvalidUsingStmtAndTreatsAsFileCode.cspans.txt │ │ │ ├── CapturesWhitespaceToEOLInInvalidUsingStmtAndTreatsAsFileCode.stree.txt │ │ │ ├── CorrectlyHandlesInCorrectTransitionsIfImplicitExpressionParensUnclosed.cspans.txt │ │ │ ├── CorrectlyHandlesInCorrectTransitionsIfImplicitExpressionParensUnclosed.diag.txt │ │ │ ├── CorrectlyHandlesInCorrectTransitionsIfImplicitExpressionParensUnclosed.stree.txt │ │ │ ├── CorrectlyParsesAtSignInDelimitedBlock.cspans.txt │ │ │ ├── CorrectlyParsesAtSignInDelimitedBlock.stree.txt │ │ │ ├── CorrectlyParsesMarkupIncorrectyAssumedToBeWithinAStatement.cspans.txt │ │ │ ├── CorrectlyParsesMarkupIncorrectyAssumedToBeWithinAStatement.diag.txt │ │ │ ├── CorrectlyParsesMarkupIncorrectyAssumedToBeWithinAStatement.stree.txt │ │ │ ├── CorrectlyRecoversFromMissingCloseParenInExpressionWithinCode.cspans.txt │ │ │ ├── CorrectlyRecoversFromMissingCloseParenInExpressionWithinCode.diag.txt │ │ │ ├── CorrectlyRecoversFromMissingCloseParenInExpressionWithinCode.stree.txt │ │ │ ├── HandlesQuotesAfterTransition.cspans.txt │ │ │ ├── HandlesQuotesAfterTransition.diag.txt │ │ │ ├── HandlesQuotesAfterTransition.stree.txt │ │ │ ├── IncludesUnexpectedCharacterInSingleStatementControlFlowStatementError.cspans.txt │ │ │ ├── IncludesUnexpectedCharacterInSingleStatementControlFlowStatementError.stree.txt │ │ │ ├── MethodOutputsOpenCurlyAsCodeSpanIfEofFoundAfterOpenCurlyBrace.cspans.txt │ │ │ ├── MethodOutputsOpenCurlyAsCodeSpanIfEofFoundAfterOpenCurlyBrace.diag.txt │ │ │ ├── MethodOutputsOpenCurlyAsCodeSpanIfEofFoundAfterOpenCurlyBrace.stree.txt │ │ │ ├── MethodOutputsZeroLengthCodeSpanIfStatementBlockEmpty.cspans.txt │ │ │ ├── MethodOutputsZeroLengthCodeSpanIfStatementBlockEmpty.stree.txt │ │ │ ├── MethodParsesNothingIfFirstCharacterIsNotIdentifierStartOrParenOrBrace.cspans.txt │ │ │ ├── MethodParsesNothingIfFirstCharacterIsNotIdentifierStartOrParenOrBrace.diag.txt │ │ │ ├── MethodParsesNothingIfFirstCharacterIsNotIdentifierStartOrParenOrBrace.stree.txt │ │ │ ├── MethodProducesErrorIfEOFAfterTransitionInEmbeddedExpression.cspans.txt │ │ │ ├── MethodProducesErrorIfEOFAfterTransitionInEmbeddedExpression.diag.txt │ │ │ ├── MethodProducesErrorIfEOFAfterTransitionInEmbeddedExpression.stree.txt │ │ │ ├── MethodProducesErrorIfNewlineFollowsTransition.cspans.txt │ │ │ ├── MethodProducesErrorIfNewlineFollowsTransition.diag.txt │ │ │ ├── MethodProducesErrorIfNewlineFollowsTransition.stree.txt │ │ │ ├── MethodProducesErrorIfWhitespaceBetweenTransitionAndBlockStartInEmbeddedExpr.cspans.txt │ │ │ ├── MethodProducesErrorIfWhitespaceBetweenTransitionAndBlockStartInEmbeddedExpr.diag.txt │ │ │ ├── MethodProducesErrorIfWhitespaceBetweenTransitionAndBlockStartInEmbeddedExpr.stree.txt │ │ │ ├── OutputsErrorIfAtSignFollowedByLessThanSignAtStatementStart.cspans.txt │ │ │ ├── OutputsErrorIfAtSignFollowedByLessThanSignAtStatementStart.diag.txt │ │ │ ├── OutputsErrorIfAtSignFollowedByLessThanSignAtStatementStart.stree.txt │ │ │ ├── ReportsErrorIfCatchBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfCatchBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfCatchBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfClassBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfClassBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfClassBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfDoBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfDoBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfDoBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfElseBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfElseBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfElseBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfElseIfBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfElseIfBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfElseIfBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfExplicitCodeBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfExplicitCodeBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfExplicitCodeBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfFinallyBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfFinallyBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfFinallyBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfForBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfForBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfForBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfForeachBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfForeachBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfForeachBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfIfBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfIfBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfIfBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfLockBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfLockBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfLockBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfSwitchBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfSwitchBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfSwitchBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfTryBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfTryBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfTryBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfUsingBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfUsingBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfUsingBlockUnterminatedAtEOF.stree.txt │ │ │ ├── ReportsErrorIfWhileBlockUnterminatedAtEOF.cspans.txt │ │ │ ├── ReportsErrorIfWhileBlockUnterminatedAtEOF.diag.txt │ │ │ ├── ReportsErrorIfWhileBlockUnterminatedAtEOF.stree.txt │ │ │ ├── RequiresControlFlowStatementsToHaveBraces.cspans.txt │ │ │ ├── RequiresControlFlowStatementsToHaveBraces.diag.txt │ │ │ ├── RequiresControlFlowStatementsToHaveBraces.stree.txt │ │ │ ├── ResumesIfStatementAfterOpenParen.cspans.txt │ │ │ ├── ResumesIfStatementAfterOpenParen.diag.txt │ │ │ ├── ResumesIfStatementAfterOpenParen.stree.txt │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfBracketInImplicitExpressionUnclosed.cspans.txt │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfBracketInImplicitExpressionUnclosed.diag.txt │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfBracketInImplicitExpressionUnclosed.stree.txt │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfIfParenInExplicitExprUnclosed.cspans.txt │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfIfParenInExplicitExprUnclosed.diag.txt │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfIfParenInExplicitExprUnclosed.stree.txt │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfParenInImplicitExprUnclosed.cspans.txt │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfParenInImplicitExprUnclosed.diag.txt │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfParenInImplicitExprUnclosed.stree.txt │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfBracketInImplicitExprUnclosed.cspans.txt │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfBracketInImplicitExprUnclosed.diag.txt │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfBracketInImplicitExprUnclosed.stree.txt │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfIfParenInExplicitExprUnclosed.cspans.txt │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfIfParenInExplicitExprUnclosed.diag.txt │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfIfParenInExplicitExprUnclosed.stree.txt │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfParenInImplicitExpressionUnclosed.cspans.txt │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfParenInImplicitExpressionUnclosed.diag.txt │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfParenInImplicitExpressionUnclosed.stree.txt │ │ │ ├── TerminatesForeachBlockAtEOLWhenRecoveringFromMissingCloseParen.cspans.txt │ │ │ ├── TerminatesForeachBlockAtEOLWhenRecoveringFromMissingCloseParen.diag.txt │ │ │ ├── TerminatesForeachBlockAtEOLWhenRecoveringFromMissingCloseParen.stree.txt │ │ │ ├── TerminatesIfBlockAtEOLWhenRecoveringFromMissingCloseParen.cspans.txt │ │ │ ├── TerminatesIfBlockAtEOLWhenRecoveringFromMissingCloseParen.diag.txt │ │ │ ├── TerminatesIfBlockAtEOLWhenRecoveringFromMissingCloseParen.stree.txt │ │ │ ├── TerminatesNormalCSharpStringsAtEOLIfEndQuoteMissing.cspans.txt │ │ │ ├── TerminatesNormalCSharpStringsAtEOLIfEndQuoteMissing.diag.txt │ │ │ ├── TerminatesNormalCSharpStringsAtEOLIfEndQuoteMissing.stree.txt │ │ │ ├── TerminatesNormalStringAtEndOfFile.cspans.txt │ │ │ ├── TerminatesNormalStringAtEndOfFile.diag.txt │ │ │ ├── TerminatesNormalStringAtEndOfFile.stree.txt │ │ │ ├── TerminatesUsingBlockAtEOLWhenRecoveringFromMissingCloseParen.cspans.txt │ │ │ ├── TerminatesUsingBlockAtEOLWhenRecoveringFromMissingCloseParen.diag.txt │ │ │ ├── TerminatesUsingBlockAtEOLWhenRecoveringFromMissingCloseParen.stree.txt │ │ │ ├── TerminatesVerbatimStringAtEndOfFile.cspans.txt │ │ │ ├── TerminatesVerbatimStringAtEndOfFile.diag.txt │ │ │ ├── TerminatesVerbatimStringAtEndOfFile.stree.txt │ │ │ ├── TerminatesWhileClauseInDoStmtAtEOLWhenRecoveringFromMissingCloseParen.cspans.txt │ │ │ ├── TerminatesWhileClauseInDoStmtAtEOLWhenRecoveringFromMissingCloseParen.diag.txt │ │ │ ├── TerminatesWhileClauseInDoStmtAtEOLWhenRecoveringFromMissingCloseParen.stree.txt │ │ │ ├── WithHelperDirectiveProducesError.cspans.txt │ │ │ ├── WithHelperDirectiveProducesError.diag.txt │ │ │ ├── WithHelperDirectiveProducesError.stree.txt │ │ │ ├── WithNestedCodeBlockProducesError.cspans.txt │ │ │ ├── WithNestedCodeBlockProducesError.diag.txt │ │ │ └── WithNestedCodeBlockProducesError.stree.txt │ │ ├── CSharpExplicitExpressionTest │ │ │ ├── ShouldAcceptConsecutiveEscapedQuotesInNonVerbatimStrings.cspans.txt │ │ │ ├── ShouldAcceptConsecutiveEscapedQuotesInNonVerbatimStrings.stree.txt │ │ │ ├── ShouldAcceptConsecutiveEscapedQuotesInVerbatimStrings.cspans.txt │ │ │ ├── ShouldAcceptConsecutiveEscapedQuotesInVerbatimStrings.stree.txt │ │ │ ├── ShouldAcceptEscapedQuoteInNonVerbatimStrings.cspans.txt │ │ │ ├── ShouldAcceptEscapedQuoteInNonVerbatimStrings.stree.txt │ │ │ ├── ShouldAcceptEscapedQuoteInVerbatimStrings.cspans.txt │ │ │ ├── ShouldAcceptEscapedQuoteInVerbatimStrings.stree.txt │ │ │ ├── ShouldAcceptMultiLineVerbatimStrings.cspans.txt │ │ │ ├── ShouldAcceptMultiLineVerbatimStrings.stree.txt │ │ │ ├── ShouldAcceptMultipleEscapedQuotesInNonVerbatimStrings.cspans.txt │ │ │ ├── ShouldAcceptMultipleEscapedQuotesInNonVerbatimStrings.stree.txt │ │ │ ├── ShouldAcceptMultipleEscapedQuotesInVerbatimStrings.cspans.txt │ │ │ ├── ShouldAcceptMultipleEscapedQuotesInVerbatimStrings.stree.txt │ │ │ ├── ShouldAcceptMultipleRepeatedEscapedQuoteInVerbatimStrings.cspans.txt │ │ │ ├── ShouldAcceptMultipleRepeatedEscapedQuoteInVerbatimStrings.stree.txt │ │ │ ├── ShouldOutputZeroLengthCodeSpanIfEOFOccursAfterStartOfExplicitExpr.cspans.txt │ │ │ ├── ShouldOutputZeroLengthCodeSpanIfEOFOccursAfterStartOfExplicitExpr.diag.txt │ │ │ ├── ShouldOutputZeroLengthCodeSpanIfEOFOccursAfterStartOfExplicitExpr.stree.txt │ │ │ ├── ShouldOutputZeroLengthCodeSpanIfExplicitExpressionIsEmpty.cspans.txt │ │ │ └── ShouldOutputZeroLengthCodeSpanIfExplicitExpressionIsEmpty.stree.txt │ │ ├── CSharpFunctionsTest │ │ │ ├── Functions_SingleLineControlFlowStatement.cspans.txt │ │ │ ├── Functions_SingleLineControlFlowStatement.stree.txt │ │ │ ├── Functions_SingleLineControlFlowStatement_Error.cspans.txt │ │ │ ├── Functions_SingleLineControlFlowStatement_Error.diag.txt │ │ │ ├── Functions_SingleLineControlFlowStatement_Error.stree.txt │ │ │ ├── MarkupInFunctionsBlock_CanContainCurlyBraces.cspans.txt │ │ │ ├── MarkupInFunctionsBlock_CanContainCurlyBraces.stree.txt │ │ │ ├── MarkupInFunctionsBlock_DoesNotParseMarkupInString.cspans.txt │ │ │ ├── MarkupInFunctionsBlock_DoesNotParseMarkupInString.stree.txt │ │ │ ├── MarkupInFunctionsBlock_DoesNotParseMarkupInVerbatimString.cspans.txt │ │ │ ├── MarkupInFunctionsBlock_DoesNotParseMarkupInVerbatimString.stree.txt │ │ │ ├── MarkupInFunctionsBlock_DoesNotParseWhenNotSupported.cspans.txt │ │ │ ├── MarkupInFunctionsBlock_DoesNotParseWhenNotSupported.stree.txt │ │ │ ├── MarkupInFunctionsBlock_MarkupCanContainTemplate.cspans.txt │ │ │ ├── MarkupInFunctionsBlock_MarkupCanContainTemplate.stree.txt │ │ │ ├── MarkupInFunctionsBlock_ParsesMarkupInsideMethod.cspans.txt │ │ │ ├── MarkupInFunctionsBlock_ParsesMarkupInsideMethod.stree.txt │ │ │ ├── MarkupInFunctionsBlock_ParsesMarkupWithExpressionsMethod.cspans.txt │ │ │ ├── MarkupInFunctionsBlock_ParsesMarkupWithExpressionsMethod.stree.txt │ │ │ ├── ReservedKeywordsInFunctionsBlock_WithMarkup.cspans.txt │ │ │ └── ReservedKeywordsInFunctionsBlock_WithMarkup.stree.txt │ │ ├── CSharpImplicitExpressionTest │ │ │ ├── AcceptsNonEnglishCharactersThatAreValidIdentifiers.cspans.txt │ │ │ ├── AcceptsNonEnglishCharactersThatAreValidIdentifiers.stree.txt │ │ │ ├── DoesNotAcceptSemicolonIfExpressionTerminatedByWhitespace.cspans.txt │ │ │ ├── DoesNotAcceptSemicolonIfExpressionTerminatedByWhitespace.stree.txt │ │ │ ├── DoesNotIncludeDotAtEOFInImplicitExpression.cspans.txt │ │ │ ├── DoesNotIncludeDotAtEOFInImplicitExpression.stree.txt │ │ │ ├── DoesNotIncludeDotFollowedByInvalidIdentifierCharInImplicitExpr1.cspans.txt │ │ │ ├── DoesNotIncludeDotFollowedByInvalidIdentifierCharInImplicitExpr1.stree.txt │ │ │ ├── DoesNotIncludeDotFollowedByInvalidIdentifierCharInImplicitExpr2.cspans.txt │ │ │ ├── DoesNotIncludeDotFollowedByInvalidIdentifierCharInImplicitExpr2.stree.txt │ │ │ ├── DoesNotIncludeSemicolonAfterDot.cspans.txt │ │ │ ├── DoesNotIncludeSemicolonAfterDot.stree.txt │ │ │ ├── IgnoresSemicolonAtEndOfDottedIdentifiers.cspans.txt │ │ │ ├── IgnoresSemicolonAtEndOfDottedIdentifiers.stree.txt │ │ │ ├── IgnoresSemicolonAtEndOfSimpleImplicitExpression.cspans.txt │ │ │ ├── IgnoresSemicolonAtEndOfSimpleImplicitExpression.stree.txt │ │ │ ├── NestedImplicitExpression.cspans.txt │ │ │ ├── NestedImplicitExpression.stree.txt │ │ │ ├── OutputExpressionIfModuleTokenNotFollowedByBrace.cspans.txt │ │ │ ├── OutputExpressionIfModuleTokenNotFollowedByBrace.stree.txt │ │ │ ├── OutputsZeroLengthCodeSpanIfEOFOccursAfterTransition.cspans.txt │ │ │ ├── OutputsZeroLengthCodeSpanIfEOFOccursAfterTransition.diag.txt │ │ │ ├── OutputsZeroLengthCodeSpanIfEOFOccursAfterTransition.stree.txt │ │ │ ├── OutputsZeroLengthCodeSpanIfInvalidCharacterFollowsTransition.cspans.txt │ │ │ ├── OutputsZeroLengthCodeSpanIfInvalidCharacterFollowsTransition.diag.txt │ │ │ ├── OutputsZeroLengthCodeSpanIfInvalidCharacterFollowsTransition.stree.txt │ │ │ ├── ParsesDottedIdentifiersAsImplicitExpression.cspans.txt │ │ │ ├── ParsesDottedIdentifiersAsImplicitExpression.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket1.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket1.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket10.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket10.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket11.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket11.diag.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket11.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket12.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket12.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket13.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket13.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket14.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket14.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket15.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket15.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket16.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket16.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket2.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket2.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket3.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket3.diag.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket3.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket4.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket4.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket5.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket5.diag.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket5.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket6.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket6.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket7.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket7.diag.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket7.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket8.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket8.diag.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket8.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket9.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket9.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot1.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot1.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot10.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot10.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot11.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot11.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot12.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot12.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot13.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot13.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot14.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot14.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot2.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot2.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot3.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot3.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot4.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot4.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot5.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot5.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot6.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot6.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot7.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot7.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot8.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot8.stree.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot9.cspans.txt │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot9.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Bracket15.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Bracket15.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Brackets.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Brackets.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Combined.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Combined.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_CombinedEnding.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_CombinedEnding.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_CombinedWithNullConditional.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_CombinedWithNullConditional.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Complex.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Complex.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_DirectiveCodeBlock.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_DirectiveCodeBlock.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_DoubleBang_IncompleteBracket.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_DoubleBang_IncompleteBracket.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Ending.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Ending.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_EndingDotedOperator.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_EndingDotedOperator.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_FullExpression.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_FullExpression.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_FullExpressionWithHtml.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_FullExpressionWithHtml.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_IncompleteBracket.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_IncompleteBracket.diag.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_IncompleteBracket.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_IncompleteBracketWithHtml.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_IncompleteBracketWithHtml.diag.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_IncompleteBracketWithHtml.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_IncompleteBracketWithIdentifier.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_IncompleteBracketWithIdentifier.diag.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_IncompleteBracketWithIdentifier.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_IncompleteParenthesis.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_IncompleteParenthesis.diag.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_IncompleteParenthesis.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Incomplete_ContinuedHtml.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Incomplete_ContinuedHtml.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_InvalidMethodEnding.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_InvalidMethodEnding.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_MixedIncompleteBracket.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_MixedIncompleteBracket.diag.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_MixedIncompleteBracket.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_MixedNullConditional.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_MixedNullConditional.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Multiple.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Multiple.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_MultipleMixed.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_MultipleMixed.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_MultipleMixed2.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_MultipleMixed2.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Multiple_Incomplete.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Multiple_Incomplete.diag.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Multiple_Incomplete.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Nested.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_Nested.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_NestedCodeBlock.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_NestedCodeBlock.stree.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_SingleOperator.cspans.txt │ │ │ ├── ParsesNullForgivenessOperatorImplicitExpression_SingleOperator.stree.txt │ │ │ ├── ParsesSingleIdentifierAsImplicitExpression.cspans.txt │ │ │ ├── ParsesSingleIdentifierAsImplicitExpression.stree.txt │ │ │ ├── ProperlyParsesBracketsAndBalancesThemInImplicitExpression.cspans.txt │ │ │ ├── ProperlyParsesBracketsAndBalancesThemInImplicitExpression.stree.txt │ │ │ ├── ProperlyParsesParenthesesAndBalancesThemInImplicitExpression.cspans.txt │ │ │ ├── ProperlyParsesParenthesesAndBalancesThemInImplicitExpression.stree.txt │ │ │ ├── StopsBalancingParenthesesAtEOF.cspans.txt │ │ │ ├── StopsBalancingParenthesesAtEOF.diag.txt │ │ │ ├── StopsBalancingParenthesesAtEOF.stree.txt │ │ │ ├── SupportsSlashesWithinComplexImplicitExpressions.cspans.txt │ │ │ ├── SupportsSlashesWithinComplexImplicitExpressions.stree.txt │ │ │ ├── TerminatesAfterIdentifierUnlessFollowedByDotOrParenInImplicitExpr.cspans.txt │ │ │ ├── TerminatesAfterIdentifierUnlessFollowedByDotOrParenInImplicitExpr.stree.txt │ │ │ ├── TerminatesImplicitExprBeforeDotIfDotNotFollowedByIdentifierStartChar.cspans.txt │ │ │ ├── TerminatesImplicitExprBeforeDotIfDotNotFollowedByIdentifierStartChar.stree.txt │ │ │ ├── TerminatesImplicitExpressionAtHtmlEndTag.cspans.txt │ │ │ ├── TerminatesImplicitExpressionAtHtmlEndTag.stree.txt │ │ │ ├── TerminatesImplicitExpressionAtHtmlStartTag.cspans.txt │ │ │ ├── TerminatesImplicitExpressionAtHtmlStartTag.stree.txt │ │ │ ├── TerminatesImplicitExpressionAtLastValidPointIfDotFollowedByWhitespace.cspans.txt │ │ │ ├── TerminatesImplicitExpressionAtLastValidPointIfDotFollowedByWhitespace.stree.txt │ │ │ ├── TerminatesImplicitExpressionIfCloseParenFollowedByAnyWhiteSpace.cspans.txt │ │ │ ├── TerminatesImplicitExpressionIfCloseParenFollowedByAnyWhiteSpace.stree.txt │ │ │ ├── TerminatesImplicitExpressionIfIdentifierFollowedByAnyWhiteSpace.cspans.txt │ │ │ └── TerminatesImplicitExpressionIfIdentifierFollowedByAnyWhiteSpace.stree.txt │ │ ├── CSharpNestedStatementsTest │ │ │ ├── NestedCodeBlock.cspans.txt │ │ │ ├── NestedCodeBlock.stree.txt │ │ │ ├── NestedExplicitExpression.cspans.txt │ │ │ ├── NestedExplicitExpression.stree.txt │ │ │ ├── NestedImplicitExpression.cspans.txt │ │ │ ├── NestedImplicitExpression.stree.txt │ │ │ ├── NestedKeywordStatement.cspans.txt │ │ │ ├── NestedKeywordStatement.stree.txt │ │ │ ├── NestedMarkupBlock.cspans.txt │ │ │ ├── NestedMarkupBlock.stree.txt │ │ │ ├── NestedSimpleStatement.cspans.txt │ │ │ └── NestedSimpleStatement.stree.txt │ │ ├── CSharpRazorCommentsTest │ │ │ ├── EmptyRazorComment.cspans.txt │ │ │ ├── EmptyRazorComment.stree.txt │ │ │ ├── MultipleRazorCommentInMarkup.cspans.txt │ │ │ ├── MultipleRazorCommentInMarkup.stree.txt │ │ │ ├── MultipleRazorCommentsInSameLineInMarkup.cspans.txt │ │ │ ├── MultipleRazorCommentsInSameLineInMarkup.stree.txt │ │ │ ├── RazorCommentBetweenCodeBlockAndMarkup.cspans.txt │ │ │ ├── RazorCommentBetweenCodeBlockAndMarkup.stree.txt │ │ │ ├── RazorCommentInClosingTagBlock.cspans.txt │ │ │ ├── RazorCommentInClosingTagBlock.stree.txt │ │ │ ├── RazorCommentInImplicitExpressionMethodCall.cspans.txt │ │ │ ├── RazorCommentInImplicitExpressionMethodCall.diag.txt │ │ │ ├── RazorCommentInImplicitExpressionMethodCall.stree.txt │ │ │ ├── RazorCommentInMarkup.cspans.txt │ │ │ ├── RazorCommentInMarkup.stree.txt │ │ │ ├── RazorCommentInOpeningTagBlock.cspans.txt │ │ │ ├── RazorCommentInOpeningTagBlock.stree.txt │ │ │ ├── RazorCommentInVerbatimBlock.cspans.txt │ │ │ ├── RazorCommentInVerbatimBlock.diag.txt │ │ │ ├── RazorCommentInVerbatimBlock.stree.txt │ │ │ ├── RazorCommentWithExtraNewLineInMarkup.cspans.txt │ │ │ ├── RazorCommentWithExtraNewLineInMarkup.stree.txt │ │ │ ├── RazorCommentsSurroundingMarkup.cspans.txt │ │ │ ├── RazorCommentsSurroundingMarkup.stree.txt │ │ │ ├── RazorMultilineCommentInBlock.cspans.txt │ │ │ ├── RazorMultilineCommentInBlock.stree.txt │ │ │ ├── UnterminatedRazorComment.cspans.txt │ │ │ ├── UnterminatedRazorComment.diag.txt │ │ │ ├── UnterminatedRazorComment.stree.txt │ │ │ ├── UnterminatedRazorCommentInImplicitExpressionMethodCall.cspans.txt │ │ │ ├── UnterminatedRazorCommentInImplicitExpressionMethodCall.diag.txt │ │ │ ├── UnterminatedRazorCommentInImplicitExpressionMethodCall.stree.txt │ │ │ ├── UnterminatedRazorCommentInVerbatimBlock.cspans.txt │ │ │ ├── UnterminatedRazorCommentInVerbatimBlock.diag.txt │ │ │ └── UnterminatedRazorCommentInVerbatimBlock.stree.txt │ │ ├── CSharpReservedWordsTest │ │ │ ├── ReservedWord.cspans.txt │ │ │ ├── ReservedWord.diag.txt │ │ │ ├── ReservedWord.stree.txt │ │ │ ├── ReservedWordIsCaseSensitive.cspans.txt │ │ │ └── ReservedWordIsCaseSensitive.stree.txt │ │ ├── CSharpSectionTest │ │ │ ├── AcceptsOpenBraceMultipleLinesBelowSectionName.cspans.txt │ │ │ ├── AcceptsOpenBraceMultipleLinesBelowSectionName.stree.txt │ │ │ ├── AllowsBracesInCSharpExpression.cspans.txt │ │ │ ├── AllowsBracesInCSharpExpression.stree.txt │ │ │ ├── BalancesBraces.cspans.txt │ │ │ ├── BalancesBraces.stree.txt │ │ │ ├── CapturesNewlineImmediatelyFollowing.cspans.txt │ │ │ ├── CapturesNewlineImmediatelyFollowing.diag.txt │ │ │ ├── CapturesNewlineImmediatelyFollowing.stree.txt │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingName.cspans.txt │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingName.diag.txt │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingName.stree.txt │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingOpenBrace.cspans.txt │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingOpenBrace.diag.txt │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingOpenBrace.stree.txt │ │ │ ├── CommentRecoversFromUnclosedTag.cspans.txt │ │ │ ├── CommentRecoversFromUnclosedTag.stree.txt │ │ │ ├── CorrectlyTerminatesWhenCloseBraceImmediatelyFollowsMarkup.cspans.txt │ │ │ ├── CorrectlyTerminatesWhenCloseBraceImmediatelyFollowsMarkup.stree.txt │ │ │ ├── DoesNotRequireSpaceBetweenSectionNameAndOpenBrace.cspans.txt │ │ │ ├── DoesNotRequireSpaceBetweenSectionNameAndOpenBrace.stree.txt │ │ │ ├── HandlesEOFAfterOpenBrace.cspans.txt │ │ │ ├── HandlesEOFAfterOpenBrace.diag.txt │ │ │ ├── HandlesEOFAfterOpenBrace.stree.txt │ │ │ ├── HandlesEOFAfterOpenContent1.cspans.txt │ │ │ ├── HandlesEOFAfterOpenContent1.diag.txt │ │ │ ├── HandlesEOFAfterOpenContent1.stree.txt │ │ │ ├── HandlesEOFAfterOpenContent2.cspans.txt │ │ │ ├── HandlesEOFAfterOpenContent2.diag.txt │ │ │ ├── HandlesEOFAfterOpenContent2.stree.txt │ │ │ ├── HandlesEOFAfterOpenContent3.cspans.txt │ │ │ ├── HandlesEOFAfterOpenContent3.diag.txt │ │ │ ├── HandlesEOFAfterOpenContent3.stree.txt │ │ │ ├── HandlesEOFAfterOpenContent4.cspans.txt │ │ │ ├── HandlesEOFAfterOpenContent4.diag.txt │ │ │ ├── HandlesEOFAfterOpenContent4.stree.txt │ │ │ ├── HandlesUnterminatedSection.cspans.txt │ │ │ ├── HandlesUnterminatedSection.diag.txt │ │ │ ├── HandlesUnterminatedSection.stree.txt │ │ │ ├── HandlesUnterminatedSectionWithNestedIf.cspans.txt │ │ │ ├── HandlesUnterminatedSectionWithNestedIf.diag.txt │ │ │ ├── HandlesUnterminatedSectionWithNestedIf.stree.txt │ │ │ ├── IgnoresSectionUnlessAllLowerCase.cspans.txt │ │ │ ├── IgnoresSectionUnlessAllLowerCase.stree.txt │ │ │ ├── ParserDoesNotOutputErrorOtherNestedDirectives.cspans.txt │ │ │ ├── ParserDoesNotOutputErrorOtherNestedDirectives.diag.txt │ │ │ ├── ParserDoesNotOutputErrorOtherNestedDirectives.stree.txt │ │ │ ├── ParserOutputsErrorOnMultipleNestedSections.cspans.txt │ │ │ ├── ParserOutputsErrorOnMultipleNestedSections.diag.txt │ │ │ ├── ParserOutputsErrorOnMultipleNestedSections.stree.txt │ │ │ ├── ParserOutputsErrorOnNestedSections.cspans.txt │ │ │ ├── ParserOutputsErrorOnNestedSections.diag.txt │ │ │ ├── ParserOutputsErrorOnNestedSections.stree.txt │ │ │ ├── ParsesComment.cspans.txt │ │ │ ├── ParsesComment.stree.txt │ │ │ ├── ParsesCommentWithDelimiters.cspans.txt │ │ │ ├── ParsesCommentWithDelimiters.stree.txt │ │ │ ├── ParsesNamedSectionCorrectly.cspans.txt │ │ │ ├── ParsesNamedSectionCorrectly.stree.txt │ │ │ ├── ParsesXmlProcessingInstruction.cspans.txt │ │ │ ├── ParsesXmlProcessingInstruction.stree.txt │ │ │ ├── ReportsErrorAndAcceptsWhitespaceToEOLIfSectionNotFollowedByOpenBrace.cspans.txt │ │ │ ├── ReportsErrorAndAcceptsWhitespaceToEOLIfSectionNotFollowedByOpenBrace.diag.txt │ │ │ ├── ReportsErrorAndAcceptsWhitespaceToEOLIfSectionNotFollowedByOpenBrace.stree.txt │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfKeywordNotFollowedByIdentifierStartChar.cspans.txt │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfKeywordNotFollowedByIdentifierStartChar.diag.txt │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfKeywordNotFollowedByIdentifierStartChar.stree.txt │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfNameNotFollowedByOpenBrace.cspans.txt │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfNameNotFollowedByOpenBrace.diag.txt │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfNameNotFollowedByOpenBrace.stree.txt │ │ │ ├── SectionCorrectlyTerminatedWhenCloseBraceFollowsCodeBlockNoWhitespace.cspans.txt │ │ │ ├── SectionCorrectlyTerminatedWhenCloseBraceFollowsCodeBlockNoWhitespace.stree.txt │ │ │ ├── SectionIsCorrectlyTerminatedWhenCloseBraceImmediatelyFollowsCodeBlock.cspans.txt │ │ │ ├── SectionIsCorrectlyTerminatedWhenCloseBraceImmediatelyFollowsCodeBlock.stree.txt │ │ │ ├── _WithDoubleTransition1.cspans.txt │ │ │ ├── _WithDoubleTransition1.stree.txt │ │ │ ├── _WithDoubleTransition2.cspans.txt │ │ │ └── _WithDoubleTransition2.stree.txt │ │ ├── CSharpSpecialBlockTest │ │ │ ├── BalancesBracesOutsideStringsIfFirstCharIsBraceAndReturnsSpanOfTypeCode.cspans.txt │ │ │ ├── BalancesBracesOutsideStringsIfFirstCharIsBraceAndReturnsSpanOfTypeCode.stree.txt │ │ │ ├── BalancesParensOutsideStringsIfFirstCharIsParenAndReturnsSpanOfTypeExpr.cspans.txt │ │ │ ├── BalancesParensOutsideStringsIfFirstCharIsParenAndReturnsSpanOfTypeExpr.stree.txt │ │ │ ├── NamespaceImportInsideCodeBlockCausesError.cspans.txt │ │ │ ├── NamespaceImportInsideCodeBlockCausesError.stree.txt │ │ │ ├── NonKeywordStatementInCodeBlockIsHandledCorrectly.cspans.txt │ │ │ ├── NonKeywordStatementInCodeBlockIsHandledCorrectly.stree.txt │ │ │ ├── ParseBlockIgnoresSingleSlashAtStart.cspans.txt │ │ │ ├── ParseBlockIgnoresSingleSlashAtStart.diag.txt │ │ │ ├── ParseBlockIgnoresSingleSlashAtStart.stree.txt │ │ │ ├── ParseBlockTerminatesSingleLineCommentAtEndOfLine.cspans.txt │ │ │ ├── ParseBlockTerminatesSingleLineCommentAtEndOfLine.stree.txt │ │ │ ├── TypeAliasInsideCodeBlockIsNotHandledSpecially.cspans.txt │ │ │ └── TypeAliasInsideCodeBlockIsNotHandledSpecially.stree.txt │ │ ├── CSharpStatementTest │ │ │ ├── AwaitForEachStatement.cspans.txt │ │ │ ├── AwaitForEachStatement.stree.txt │ │ │ ├── CatchClause.cspans.txt │ │ │ ├── CatchClause.stree.txt │ │ │ ├── DoStatement.cspans.txt │ │ │ ├── DoStatement.stree.txt │ │ │ ├── ElseClause.cspans.txt │ │ │ ├── ElseClause.stree.txt │ │ │ ├── ElseIfClause.cspans.txt │ │ │ ├── ElseIfClause.stree.txt │ │ │ ├── ExceptionFilterError_TryCatchWhen_InCompleteBody.cspans.txt │ │ │ ├── ExceptionFilterError_TryCatchWhen_InCompleteBody.diag.txt │ │ │ ├── ExceptionFilterError_TryCatchWhen_InCompleteBody.stree.txt │ │ │ ├── ExceptionFilterError_TryCatchWhen_InCompleteCondition.cspans.txt │ │ │ ├── ExceptionFilterError_TryCatchWhen_InCompleteCondition.diag.txt │ │ │ ├── ExceptionFilterError_TryCatchWhen_InCompleteCondition.stree.txt │ │ │ ├── ExceptionFilter_IncompleteTryCatchNoBodyWhen.cspans.txt │ │ │ ├── ExceptionFilter_IncompleteTryCatchNoBodyWhen.stree.txt │ │ │ ├── ExceptionFilter_IncompleteTryCatchWhen.cspans.txt │ │ │ ├── ExceptionFilter_IncompleteTryCatchWhen.stree.txt │ │ │ ├── ExceptionFilter_IncompleteTryCatchWhenNoBodies.cspans.txt │ │ │ ├── ExceptionFilter_IncompleteTryCatchWhenNoBodies.stree.txt │ │ │ ├── ExceptionFilter_IncompleteTryWhen.cspans.txt │ │ │ ├── ExceptionFilter_IncompleteTryWhen.stree.txt │ │ │ ├── ExceptionFilter_MultiLine.cspans.txt │ │ │ ├── ExceptionFilter_MultiLine.stree.txt │ │ │ ├── ExceptionFilter_NestedTryCatchWhen.cspans.txt │ │ │ ├── ExceptionFilter_NestedTryCatchWhen.stree.txt │ │ │ ├── ExceptionFilter_TryCatchWhenCatchWhenComplete_SingleLine.cspans.txt │ │ │ ├── ExceptionFilter_TryCatchWhenCatchWhenComplete_SingleLine.stree.txt │ │ │ ├── ExceptionFilter_TryCatchWhenComplete_SingleLine.cspans.txt │ │ │ ├── ExceptionFilter_TryCatchWhenComplete_SingleLine.stree.txt │ │ │ ├── ExceptionFilter_TryCatchWhenFinallyComplete_SingleLine.cspans.txt │ │ │ ├── ExceptionFilter_TryCatchWhenFinallyComplete_SingleLine.stree.txt │ │ │ ├── FinallyClause.cspans.txt │ │ │ ├── FinallyClause.stree.txt │ │ │ ├── ForEachStatement.cspans.txt │ │ │ ├── ForEachStatement.stree.txt │ │ │ ├── ForStatement.cspans.txt │ │ │ ├── ForStatement.stree.txt │ │ │ ├── IfStatement.cspans.txt │ │ │ ├── IfStatement.stree.txt │ │ │ ├── LockStatement.cspans.txt │ │ │ ├── LockStatement.stree.txt │ │ │ ├── MalformedAwaitForEachStatement.cspans.txt │ │ │ ├── MalformedAwaitForEachStatement.diag.txt │ │ │ ├── MalformedAwaitForEachStatement.stree.txt │ │ │ ├── NonBlockKeywordTreatedAsImplicitExpression.cspans.txt │ │ │ ├── NonBlockKeywordTreatedAsImplicitExpression.stree.txt │ │ │ ├── StaticUsing_Complete_Spaced.cspans.txt │ │ │ ├── StaticUsing_Complete_Spaced.stree.txt │ │ │ ├── StaticUsing_GlobalPrefix.cspans.txt │ │ │ ├── StaticUsing_GlobalPrefix.stree.txt │ │ │ ├── StaticUsing_MultipleIdentifiers.cspans.txt │ │ │ ├── StaticUsing_MultipleIdentifiers.stree.txt │ │ │ ├── StaticUsing_NoUsing.cspans.txt │ │ │ ├── StaticUsing_NoUsing.stree.txt │ │ │ ├── StaticUsing_SingleIdentifier.cspans.txt │ │ │ ├── StaticUsing_SingleIdentifier.stree.txt │ │ │ ├── SwitchStatement.cspans.txt │ │ │ ├── SwitchStatement.stree.txt │ │ │ ├── SwitchStatement_DoubleColonQualifiedTypeName.cspans.txt │ │ │ ├── SwitchStatement_DoubleColonQualifiedTypeName.stree.txt │ │ │ ├── SwitchStatement_ListPattern.cspans.txt │ │ │ ├── SwitchStatement_ListPattern.stree.txt │ │ │ ├── SwitchStatement_RecursivePattern.cspans.txt │ │ │ ├── SwitchStatement_RecursivePattern.stree.txt │ │ │ ├── SwitchStatement_TuplePattern.cspans.txt │ │ │ ├── SwitchStatement_TuplePattern.stree.txt │ │ │ ├── TryStatement.cspans.txt │ │ │ ├── TryStatement.stree.txt │ │ │ ├── UsingNamespaceImport.cspans.txt │ │ │ ├── UsingNamespaceImport.stree.txt │ │ │ ├── UsingStatement.cspans.txt │ │ │ ├── UsingStatement.stree.txt │ │ │ ├── UsingTypeAlias.cspans.txt │ │ │ ├── UsingTypeAlias.stree.txt │ │ │ ├── Using_VariableDeclaration_Complex.cspans.txt │ │ │ ├── Using_VariableDeclaration_Complex.stree.txt │ │ │ ├── Using_VariableDeclaration_Simple.cspans.txt │ │ │ ├── Using_VariableDeclaration_Simple.stree.txt │ │ │ ├── WhileStatement.cspans.txt │ │ │ └── WhileStatement.stree.txt │ │ ├── CSharpTemplateTest │ │ │ ├── HandlesSimpleTemplateInExplicitExpressionParens.cspans.txt │ │ │ ├── HandlesSimpleTemplateInExplicitExpressionParens.stree.txt │ │ │ ├── HandlesSimpleTemplateInImplicitExpressionParens.cspans.txt │ │ │ ├── HandlesSimpleTemplateInImplicitExpressionParens.stree.txt │ │ │ ├── HandlesSimpleTemplateInStatementWithinCodeBlock.cspans.txt │ │ │ ├── HandlesSimpleTemplateInStatementWithinCodeBlock.stree.txt │ │ │ ├── HandlesSimpleTemplateInStatementWithinStatementBlock.cspans.txt │ │ │ ├── HandlesSimpleTemplateInStatementWithinStatementBlock.stree.txt │ │ │ ├── HandlesSingleLineImmediatelyFollowingStatementChar.cspans.txt │ │ │ ├── HandlesSingleLineImmediatelyFollowingStatementChar.stree.txt │ │ │ ├── HandlesSingleLineTemplate.cspans.txt │ │ │ ├── HandlesSingleLineTemplate.stree.txt │ │ │ ├── HandlesTwoTemplatesInImplicitExpressionParens.cspans.txt │ │ │ ├── HandlesTwoTemplatesInImplicitExpressionParens.stree.txt │ │ │ ├── HandlesTwoTemplatesInStatementWithinCodeBlock.cspans.txt │ │ │ ├── HandlesTwoTemplatesInStatementWithinCodeBlock.stree.txt │ │ │ ├── HandlessTwoTemplatesInStatementWithinStatementBlock.cspans.txt │ │ │ ├── HandlessTwoTemplatesInStatementWithinStatementBlock.stree.txt │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInImplicitExprParens.cspans.txt │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInImplicitExprParens.diag.txt │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInImplicitExprParens.stree.txt │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInStmtWithinCodeBlock.cspans.txt │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInStmtWithinCodeBlock.diag.txt │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInStmtWithinCodeBlock.stree.txt │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInStmtWithinStmtBlock.cspans.txt │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInStmtWithinStmtBlock.diag.txt │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInStmtWithinStmtBlock.stree.txt │ │ │ ├── _WithDoubleTransition_DoesNotThrow.cspans.txt │ │ │ └── _WithDoubleTransition_DoesNotThrow.stree.txt │ │ ├── CSharpToMarkupSwitchTest │ │ │ ├── AllowsMarkupInIfBodyWithBraces.cspans.txt │ │ │ ├── AllowsMarkupInIfBodyWithBraces.stree.txt │ │ │ ├── AllowsMarkupInIfBodyWithBracesWithinCodeBlock.cspans.txt │ │ │ ├── AllowsMarkupInIfBodyWithBracesWithinCodeBlock.stree.txt │ │ │ ├── CorrectlyReturnsFromMarkupBlockWithPseudoTag.cspans.txt │ │ │ ├── CorrectlyReturnsFromMarkupBlockWithPseudoTag.stree.txt │ │ │ ├── CorrectlyReturnsFromMarkupBlockWithPseudoTagInCodeBlock.cspans.txt │ │ │ ├── CorrectlyReturnsFromMarkupBlockWithPseudoTagInCodeBlock.stree.txt │ │ │ ├── GivesAllWhitespaceOnSameLineWithTrailingNewLineToMarkupExclPreceedingNewline.cspans.txt │ │ │ ├── GivesAllWhitespaceOnSameLineWithTrailingNewLineToMarkupExclPreceedingNewline.stree.txt │ │ │ ├── GivesSpacesToCodeOnAtColonTemplateTransitionInDesignTimeMode.cspans.txt │ │ │ ├── GivesSpacesToCodeOnAtColonTemplateTransitionInDesignTimeMode.stree.txt │ │ │ ├── GivesSpacesToCodeOnAtColonTransitionInDesignTimeMode.cspans.txt │ │ │ ├── GivesSpacesToCodeOnAtColonTransitionInDesignTimeMode.stree.txt │ │ │ ├── GivesSpacesToCodeOnAtTagTemplateTransitionInDesignTimeMode.cspans.txt │ │ │ ├── GivesSpacesToCodeOnAtTagTemplateTransitionInDesignTimeMode.stree.txt │ │ │ ├── GivesSpacesToCodeOnInvalidAtTagTransitionInDesignTimeMode.cspans.txt │ │ │ ├── GivesSpacesToCodeOnInvalidAtTagTransitionInDesignTimeMode.diag.txt │ │ │ ├── GivesSpacesToCodeOnInvalidAtTagTransitionInDesignTimeMode.stree.txt │ │ │ ├── GivesSpacesToCodeOnTagTransitionInDesignTimeMode.cspans.txt │ │ │ ├── GivesSpacesToCodeOnTagTransitionInDesignTimeMode.stree.txt │ │ │ ├── ParsesMarkupStatementOnOpenAngleBracket.cspans.txt │ │ │ ├── ParsesMarkupStatementOnOpenAngleBracket.stree.txt │ │ │ ├── ParsesMarkupStatementOnOpenAngleBracketInCodeBlock.cspans.txt │ │ │ ├── ParsesMarkupStatementOnOpenAngleBracketInCodeBlock.stree.txt │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByColon.cspans.txt │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByColon.stree.txt │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByColonInCodeBlock.cspans.txt │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByColonInCodeBlock.stree.txt │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByDoubleColon.cspans.txt │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByDoubleColon.stree.txt │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByTripleColon.cspans.txt │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByTripleColon.stree.txt │ │ │ ├── ShouldSupportMarkupWithoutPreceedingWhitespace.cspans.txt │ │ │ ├── ShouldSupportMarkupWithoutPreceedingWhitespace.stree.txt │ │ │ ├── ShouldSupportSingleLineMarkupContainingStatementBlock.cspans.txt │ │ │ ├── ShouldSupportSingleLineMarkupContainingStatementBlock.stree.txt │ │ │ ├── SingleAngleBracketDoesNotCauseSwitchIfOuterBlockIsTerminated.cspans.txt │ │ │ ├── SingleAngleBracketDoesNotCauseSwitchIfOuterBlockIsTerminated.stree.txt │ │ │ ├── SupportsAllKindsOfImplicitMarkupInCodeBlock.cspans.txt │ │ │ ├── SupportsAllKindsOfImplicitMarkupInCodeBlock.stree.txt │ │ │ ├── SupportsMarkupInCaseAndDefaultBranchesOfSwitch.cspans.txt │ │ │ ├── SupportsMarkupInCaseAndDefaultBranchesOfSwitch.stree.txt │ │ │ ├── SupportsMarkupInCaseAndDefaultBranchesOfSwitchInCodeBlock.cspans.txt │ │ │ └── SupportsMarkupInCaseAndDefaultBranchesOfSwitchInCodeBlock.stree.txt │ │ ├── CSharpVerbatimBlockTest │ │ │ ├── InnerImplicitExprAcceptsTrailingNewlineInDesignTimeMode.cspans.txt │ │ │ ├── InnerImplicitExprAcceptsTrailingNewlineInDesignTimeMode.stree.txt │ │ │ ├── InnerImplicitExprDoesNotAcceptDotAfterAt.cspans.txt │ │ │ ├── InnerImplicitExprDoesNotAcceptDotAfterAt.diag.txt │ │ │ ├── InnerImplicitExprDoesNotAcceptDotAfterAt.stree.txt │ │ │ ├── InnerImplicitExprDoesNotAcceptTrailingNewlineInRunTimeMode.cspans.txt │ │ │ ├── InnerImplicitExprDoesNotAcceptTrailingNewlineInRunTimeMode.stree.txt │ │ │ ├── InnerImplicitExprWithOnlySingleAtAcceptsSingleSpaceOrNewlineAtDesignTime.cspans.txt │ │ │ ├── InnerImplicitExprWithOnlySingleAtAcceptsSingleSpaceOrNewlineAtDesignTime.diag.txt │ │ │ ├── InnerImplicitExprWithOnlySingleAtAcceptsSingleSpaceOrNewlineAtDesignTime.stree.txt │ │ │ ├── InnerImplicitExprWithOnlySingleAtOutputsZeroLengthCodeSpan.cspans.txt │ │ │ ├── InnerImplicitExprWithOnlySingleAtOutputsZeroLengthCodeSpan.diag.txt │ │ │ ├── InnerImplicitExprWithOnlySingleAtOutputsZeroLengthCodeSpan.stree.txt │ │ │ ├── VerbatimBlock.cspans.txt │ │ │ └── VerbatimBlock.stree.txt │ │ ├── CSharpWhitespaceHandlingTest │ │ │ ├── StmtBlockDoesNotAcceptTrailingNewlineIfTheyAreSignificantToAncestor.cspans.txt │ │ │ └── StmtBlockDoesNotAcceptTrailingNewlineIfTheyAreSignificantToAncestor.stree.txt │ │ ├── HtmlAttributeTest │ │ │ ├── ComponentFileKind_ParsesDirectiveAttributesAsMarkup.cspans.txt │ │ │ ├── ComponentFileKind_ParsesDirectiveAttributesAsMarkup.stree.txt │ │ │ ├── ComponentFileKind_ParsesDirectiveAttributesWithParameterAsMarkup.cspans.txt │ │ │ ├── ComponentFileKind_ParsesDirectiveAttributesWithParameterAsMarkup.stree.txt │ │ │ ├── ConditionalAttributesAreDisabledForDataAttributesInBlock.cspans.txt │ │ │ ├── ConditionalAttributesAreDisabledForDataAttributesInBlock.stree.txt │ │ │ ├── ConditionalAttributesAreDisabledForDataAttributesInDocument.cspans.txt │ │ │ ├── ConditionalAttributesAreDisabledForDataAttributesInDocument.stree.txt │ │ │ ├── ConditionalAttributesAreEnabledForDataAttributesWithExperimentalFlag.cspans.txt │ │ │ ├── ConditionalAttributesAreEnabledForDataAttributesWithExperimentalFlag.stree.txt │ │ │ ├── ConditionalAttributesWithWeirdSpacingAreDisabledForDataAttributesInBlock.cspans.txt │ │ │ ├── ConditionalAttributesWithWeirdSpacingAreDisabledForDataAttributesInBlock.stree.txt │ │ │ ├── ConditionalAttributesWithWeirdSpacingAreDisabledForDataAttributesInDocument.cspans.txt │ │ │ ├── ConditionalAttributesWithWeirdSpacingAreDisabledForDataAttributesInDocument.stree.txt │ │ │ ├── DoubleQuotedLiteralAttribute.cspans.txt │ │ │ ├── DoubleQuotedLiteralAttribute.stree.txt │ │ │ ├── DynamicAttributeWithWhitespaceSurroundingEquals.cspans.txt │ │ │ ├── DynamicAttributeWithWhitespaceSurroundingEquals.stree.txt │ │ │ ├── MultiPartLiteralAttribute.cspans.txt │ │ │ ├── MultiPartLiteralAttribute.stree.txt │ │ │ ├── MultiValueExpressionAttribute.cspans.txt │ │ │ ├── MultiValueExpressionAttribute.stree.txt │ │ │ ├── NewLineBetweenAttributes.cspans.txt │ │ │ ├── NewLineBetweenAttributes.stree.txt │ │ │ ├── NewLinePrecedingAttribute.cspans.txt │ │ │ ├── NewLinePrecedingAttribute.stree.txt │ │ │ ├── SimpleExpressionAttribute.cspans.txt │ │ │ ├── SimpleExpressionAttribute.stree.txt │ │ │ ├── SimpleLiteralAttribute.cspans.txt │ │ │ ├── SimpleLiteralAttribute.stree.txt │ │ │ ├── SimpleLiteralAttributeWithWhitespaceSurroundingEquals.cspans.txt │ │ │ ├── SimpleLiteralAttributeWithWhitespaceSurroundingEquals.stree.txt │ │ │ ├── SymbolBoundAttributes1.cspans.txt │ │ │ ├── SymbolBoundAttributes1.stree.txt │ │ │ ├── SymbolBoundAttributes2.cspans.txt │ │ │ ├── SymbolBoundAttributes2.stree.txt │ │ │ ├── SymbolBoundAttributes3.cspans.txt │ │ │ ├── SymbolBoundAttributes3.stree.txt │ │ │ ├── SymbolBoundAttributes4.cspans.txt │ │ │ ├── SymbolBoundAttributes4.stree.txt │ │ │ ├── SymbolBoundAttributes5.cspans.txt │ │ │ ├── SymbolBoundAttributes5.stree.txt │ │ │ ├── SymbolBoundAttributes6.cspans.txt │ │ │ ├── SymbolBoundAttributes6.stree.txt │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace1.cspans.txt │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace1.stree.txt │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace2.cspans.txt │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace2.stree.txt │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace3.cspans.txt │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace3.stree.txt │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace4.cspans.txt │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace4.stree.txt │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace5.cspans.txt │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace5.stree.txt │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace6.cspans.txt │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace6.stree.txt │ │ │ ├── SymbolBoundAttributes_Whitespace1.cspans.txt │ │ │ ├── SymbolBoundAttributes_Whitespace1.stree.txt │ │ │ ├── SymbolBoundAttributes_Whitespace2.cspans.txt │ │ │ ├── SymbolBoundAttributes_Whitespace2.stree.txt │ │ │ ├── SymbolBoundAttributes_Whitespace3.cspans.txt │ │ │ ├── SymbolBoundAttributes_Whitespace3.stree.txt │ │ │ ├── SymbolBoundAttributes_Whitespace4.cspans.txt │ │ │ ├── SymbolBoundAttributes_Whitespace4.stree.txt │ │ │ ├── SymbolBoundAttributes_Whitespace5.cspans.txt │ │ │ ├── SymbolBoundAttributes_Whitespace5.stree.txt │ │ │ ├── SymbolBoundAttributes_Whitespace6.cspans.txt │ │ │ ├── SymbolBoundAttributes_Whitespace6.stree.txt │ │ │ ├── UnquotedAttributeWithCodeWithSpacesInBlock.cspans.txt │ │ │ ├── UnquotedAttributeWithCodeWithSpacesInBlock.stree.txt │ │ │ ├── UnquotedAttributeWithCodeWithSpacesInDocument.cspans.txt │ │ │ ├── UnquotedAttributeWithCodeWithSpacesInDocument.stree.txt │ │ │ ├── UnquotedLiteralAttribute.cspans.txt │ │ │ ├── UnquotedLiteralAttribute.stree.txt │ │ │ ├── VirtualPathAttributesWorkWithConditionalAttributes.cspans.txt │ │ │ ├── VirtualPathAttributesWorkWithConditionalAttributes.stree.txt │ │ │ ├── WhitespaceAndNewLinePrecedingAttribute.cspans.txt │ │ │ └── WhitespaceAndNewLinePrecedingAttribute.stree.txt │ │ ├── HtmlBlockTest │ │ │ ├── AcceptsEmptyTextTag.cspans.txt │ │ │ ├── AcceptsEmptyTextTag.stree.txt │ │ │ ├── AcceptsTextTagAsOuterTagButDoesNotRender.cspans.txt │ │ │ ├── AcceptsTextTagAsOuterTagButDoesNotRender.stree.txt │ │ │ ├── AllowsCloseAngleBracketInAttributeValueIfDoubleQuoted.cspans.txt │ │ │ ├── AllowsCloseAngleBracketInAttributeValueIfDoubleQuoted.stree.txt │ │ │ ├── AllowsCloseAngleBracketInAttributeValueIfSingleQuoted.cspans.txt │ │ │ ├── AllowsCloseAngleBracketInAttributeValueIfSingleQuoted.stree.txt │ │ │ ├── AllowsSlashInAttributeValueIfDoubleQuoted.cspans.txt │ │ │ ├── AllowsSlashInAttributeValueIfDoubleQuoted.stree.txt │ │ │ ├── AllowsSlashInAttributeValueIfSingleQuoted.cspans.txt │ │ │ ├── AllowsSlashInAttributeValueIfSingleQuoted.stree.txt │ │ │ ├── AllowsStartAndEndTagsToDifferInCase.cspans.txt │ │ │ ├── AllowsStartAndEndTagsToDifferInCase.stree.txt │ │ │ ├── AllowsUnclosedTagsAsLongAsItCanRecoverToAnExpectedEndTag.cspans.txt │ │ │ ├── AllowsUnclosedTagsAsLongAsItCanRecoverToAnExpectedEndTag.stree.txt │ │ │ ├── CanHandleSelfClosingTagsWithinBlock.cspans.txt │ │ │ ├── CanHandleSelfClosingTagsWithinBlock.stree.txt │ │ │ ├── CorrectlyHandlesSingleLineOfMarkupWithEmbeddedStatement.cspans.txt │ │ │ ├── CorrectlyHandlesSingleLineOfMarkupWithEmbeddedStatement.stree.txt │ │ │ ├── DoesNotConsiderPsuedoTagWithinMarkupBlock.cspans.txt │ │ │ ├── DoesNotConsiderPsuedoTagWithinMarkupBlock.stree.txt │ │ │ ├── DoesNotTerminateXMLProcInstrAtCloseAngleUnlessPreceededByQuestionMark.cspans.txt │ │ │ ├── DoesNotTerminateXMLProcInstrAtCloseAngleUnlessPreceededByQuestionMark.stree.txt │ │ │ ├── HandlesForwardSlashInAttributeContent.cspans.txt │ │ │ ├── HandlesForwardSlashInAttributeContent.stree.txt │ │ │ ├── HandlesOpenAngleAtEof.cspans.txt │ │ │ ├── HandlesOpenAngleAtEof.diag.txt │ │ │ ├── HandlesOpenAngleAtEof.stree.txt │ │ │ ├── HandlesOpenAngleWithProperTagFollowingIt.cspans.txt │ │ │ ├── HandlesOpenAngleWithProperTagFollowingIt.diag.txt │ │ │ ├── HandlesOpenAngleWithProperTagFollowingIt.stree.txt │ │ │ ├── HandlesUnbalancedTripleDashHTMLComments.cspans.txt │ │ │ ├── HandlesUnbalancedTripleDashHTMLComments.stree.txt │ │ │ ├── HtmlCommentSupportsMultipleDashes.cspans.txt │ │ │ ├── HtmlCommentSupportsMultipleDashes.stree.txt │ │ │ ├── IgnoresTagsInContentsOfScriptTag.cspans.txt │ │ │ ├── IgnoresTagsInContentsOfScriptTag.stree.txt │ │ │ ├── OnlyTerminatesCommentOnFullEndSequence.cspans.txt │ │ │ ├── OnlyTerminatesCommentOnFullEndSequence.stree.txt │ │ │ ├── ParsesSGMLDeclarationAsEmptyTag.cspans.txt │ │ │ ├── ParsesSGMLDeclarationAsEmptyTag.stree.txt │ │ │ ├── ParsesUntilMatchingEndTagIfFirstNonWhitespaceCharacterIsStartTag.cspans.txt │ │ │ ├── ParsesUntilMatchingEndTagIfFirstNonWhitespaceCharacterIsStartTag.stree.txt │ │ │ ├── ParsesXMLProcessingInstructionAsEmptyTag.cspans.txt │ │ │ ├── ParsesXMLProcessingInstructionAsEmptyTag.stree.txt │ │ │ ├── ProperlyBalancesCommentStartAndEndTags.cspans.txt │ │ │ ├── ProperlyBalancesCommentStartAndEndTags.stree.txt │ │ │ ├── ReadsToEndOfLineIfFirstCharacterAfterTransitionIsColon.cspans.txt │ │ │ ├── ReadsToEndOfLineIfFirstCharacterAfterTransitionIsColon.stree.txt │ │ │ ├── RendersLiteralTextTagIfDoubled.cspans.txt │ │ │ ├── RendersLiteralTextTagIfDoubled.stree.txt │ │ │ ├── StopsAtMatchingCloseTagToStartTag.cspans.txt │ │ │ ├── StopsAtMatchingCloseTagToStartTag.stree.txt │ │ │ ├── StopsParsingMidEmptyTagIfEOFReached.cspans.txt │ │ │ ├── StopsParsingMidEmptyTagIfEOFReached.diag.txt │ │ │ ├── StopsParsingMidEmptyTagIfEOFReached.stree.txt │ │ │ ├── StopsParsingSingleLineBlockAtEOFIfNoEOLReached.cspans.txt │ │ │ ├── StopsParsingSingleLineBlockAtEOFIfNoEOLReached.diag.txt │ │ │ ├── StopsParsingSingleLineBlockAtEOFIfNoEOLReached.stree.txt │ │ │ ├── SupportsCommentAsBlock.cspans.txt │ │ │ ├── SupportsCommentAsBlock.stree.txt │ │ │ ├── SupportsCommentWithExtraDashAsBlock.cspans.txt │ │ │ ├── SupportsCommentWithExtraDashAsBlock.stree.txt │ │ │ ├── SupportsCommentWithinBlock.cspans.txt │ │ │ ├── SupportsCommentWithinBlock.stree.txt │ │ │ ├── SupportsScriptTagsWithLessThanSignsInThem.cspans.txt │ │ │ ├── SupportsScriptTagsWithLessThanSignsInThem.stree.txt │ │ │ ├── SupportsScriptTagsWithSpacedLessThanSignsInThem.cspans.txt │ │ │ ├── SupportsScriptTagsWithSpacedLessThanSignsInThem.stree.txt │ │ │ ├── SupportsTagsWithAttributes.cspans.txt │ │ │ ├── SupportsTagsWithAttributes.stree.txt │ │ │ ├── TagWithoutCloseAngleDoesNotTerminateBlock.cspans.txt │ │ │ ├── TagWithoutCloseAngleDoesNotTerminateBlock.diag.txt │ │ │ ├── TagWithoutCloseAngleDoesNotTerminateBlock.stree.txt │ │ │ ├── TerminatesAtEOF.cspans.txt │ │ │ ├── TerminatesAtEOF.diag.txt │ │ │ ├── TerminatesAtEOF.stree.txt │ │ │ ├── TerminatesAtEOFWhenParsingComment.cspans.txt │ │ │ ├── TerminatesAtEOFWhenParsingComment.diag.txt │ │ │ ├── TerminatesAtEOFWhenParsingComment.stree.txt │ │ │ ├── TerminatesCommentAtFirstOccurrenceOfEndSequence.cspans.txt │ │ │ ├── TerminatesCommentAtFirstOccurrenceOfEndSequence.stree.txt │ │ │ ├── TerminatesSGMLDeclarationAtFirstCloseAngle.cspans.txt │ │ │ ├── TerminatesSGMLDeclarationAtFirstCloseAngle.stree.txt │ │ │ ├── TerminatesXMLProcessingInstructionAtQuestionMarkCloseAnglePair.cspans.txt │ │ │ ├── TerminatesXMLProcessingInstructionAtQuestionMarkCloseAnglePair.stree.txt │ │ │ ├── TreatsMalformedTagsAsContent.cspans.txt │ │ │ ├── TreatsMalformedTagsAsContent.diag.txt │ │ │ ├── TreatsMalformedTagsAsContent.stree.txt │ │ │ ├── WithSelfClosingTagJustEmitsTag.cspans.txt │ │ │ └── WithSelfClosingTagJustEmitsTag.stree.txt │ │ ├── HtmlDocumentTest │ │ │ ├── AcceptsEndTagWithNoMatchingStartTag.cspans.txt │ │ │ ├── AcceptsEndTagWithNoMatchingStartTag.stree.txt │ │ │ ├── AcceptsSwapTokenAtEndOfFileAndOutputsZeroLengthCodeSpan.cspans.txt │ │ │ ├── AcceptsSwapTokenAtEndOfFileAndOutputsZeroLengthCodeSpan.diag.txt │ │ │ ├── AcceptsSwapTokenAtEndOfFileAndOutputsZeroLengthCodeSpan.stree.txt │ │ │ ├── CorrectlyHandlesOddlySpacedHTMLElements.cspans.txt │ │ │ ├── CorrectlyHandlesOddlySpacedHTMLElements.stree.txt │ │ │ ├── CorrectlyHandlesSingleLineOfMarkupWithEmbeddedStatement.cspans.txt │ │ │ ├── CorrectlyHandlesSingleLineOfMarkupWithEmbeddedStatement.stree.txt │ │ │ ├── DoesNotIgnoreNewLineAtTheEndOfMarkupBlock.cspans.txt │ │ │ ├── DoesNotIgnoreNewLineAtTheEndOfMarkupBlock.stree.txt │ │ │ ├── DoesNotIgnoreWhitespaceAtTheEndOfVerbatimBlockIfNoNewlinePresent.cspans.txt │ │ │ ├── DoesNotIgnoreWhitespaceAtTheEndOfVerbatimBlockIfNoNewlinePresent.stree.txt │ │ │ ├── DoesNotRenderExtraNewLineAtTheEndOfVerbatimBlock.cspans.txt │ │ │ ├── DoesNotRenderExtraNewLineAtTheEndOfVerbatimBlock.stree.txt │ │ │ ├── DoesNotRenderExtraWhitespaceAndNewLineAtTheEndOfVerbatimBlock.cspans.txt │ │ │ ├── DoesNotRenderExtraWhitespaceAndNewLineAtTheEndOfVerbatimBlock.stree.txt │ │ │ ├── DoesNotRenderNewlineAfterTextTagInVerbatimBlockIfFollowedByCSharp.cspans.txt │ │ │ ├── DoesNotRenderNewlineAfterTextTagInVerbatimBlockIfFollowedByCSharp.stree.txt │ │ │ ├── DoesNotReturnErrorOnMismatchedTags.cspans.txt │ │ │ ├── DoesNotReturnErrorOnMismatchedTags.stree.txt │ │ │ ├── DoesNotSwitchToCodeOnEmailAddressInAttribute.cspans.txt │ │ │ ├── DoesNotSwitchToCodeOnEmailAddressInAttribute.stree.txt │ │ │ ├── EmitsAtSignAsMarkupIfAtEndOfFile.cspans.txt │ │ │ ├── EmitsAtSignAsMarkupIfAtEndOfFile.diag.txt │ │ │ ├── EmitsAtSignAsMarkupIfAtEndOfFile.stree.txt │ │ │ ├── EmitsCodeBlockIfFirstCharacterIsSwapCharacter.cspans.txt │ │ │ ├── EmitsCodeBlockIfFirstCharacterIsSwapCharacter.stree.txt │ │ │ ├── HandlesExtraNewLineBeforeMarkupInNestedBlock.cspans.txt │ │ │ ├── HandlesExtraNewLineBeforeMarkupInNestedBlock.stree.txt │ │ │ ├── HandlesNewLineAndMarkupInNestedBlock.cspans.txt │ │ │ ├── HandlesNewLineAndMarkupInNestedBlock.stree.txt │ │ │ ├── HandlesNewLineInNestedBlock.cspans.txt │ │ │ ├── HandlesNewLineInNestedBlock.stree.txt │ │ │ ├── HandsParsingOverToCodeParserWhenAtSignEncounteredAndEmitsOutput.cspans.txt │ │ │ ├── HandsParsingOverToCodeParserWhenAtSignEncounteredAndEmitsOutput.stree.txt │ │ │ ├── IgnoresTagsInContentsOfScriptTag.cspans.txt │ │ │ ├── IgnoresTagsInContentsOfScriptTag.stree.txt │ │ │ ├── NestedCodeBlockWithMarkupSetsDotAsMarkup.cspans.txt │ │ │ ├── NestedCodeBlockWithMarkupSetsDotAsMarkup.stree.txt │ │ │ ├── NoLongerSupportsDollarOpenBraceCombination.cspans.txt │ │ │ ├── NoLongerSupportsDollarOpenBraceCombination.stree.txt │ │ │ ├── OutputsEmptyBlockWithEmptyMarkupSpanIfContentIsEmptyString.cspans.txt │ │ │ ├── OutputsEmptyBlockWithEmptyMarkupSpanIfContentIsEmptyString.stree.txt │ │ │ ├── OutputsWhitespaceOnlyContentAsSingleWhitespaceMarkupSpan.cspans.txt │ │ │ ├── OutputsWhitespaceOnlyContentAsSingleWhitespaceMarkupSpan.stree.txt │ │ │ ├── ParseDocumentDoesNotSwitchToCodeOnEmailAddressInText.cspans.txt │ │ │ ├── ParseDocumentDoesNotSwitchToCodeOnEmailAddressInText.stree.txt │ │ │ ├── ParseSectionIgnoresTagsInContentsOfScriptTag.cspans.txt │ │ │ ├── ParseSectionIgnoresTagsInContentsOfScriptTag.stree.txt │ │ │ ├── ParsesWholeContentAsOneSpanIfNoSwapCharacterEncountered.cspans.txt │ │ │ ├── ParsesWholeContentAsOneSpanIfNoSwapCharacterEncountered.stree.txt │ │ │ ├── RendersExtraNewlineAtTheEndTextTagInVerbatimBlockIfFollowedByHtml.cspans.txt │ │ │ ├── RendersExtraNewlineAtTheEndTextTagInVerbatimBlockIfFollowedByHtml.stree.txt │ │ │ ├── RendersNewlineAfterTextTagInVerbatimBlockIfFollowedByMarkupTransition.cspans.txt │ │ │ ├── RendersNewlineAfterTextTagInVerbatimBlockIfFollowedByMarkupTransition.stree.txt │ │ │ ├── RendersTextPseudoTagAsMarkup.cspans.txt │ │ │ ├── RendersTextPseudoTagAsMarkup.stree.txt │ │ │ ├── ReturnsOneMarkupSegmentIfNoCodeBlocksEncountered.cspans.txt │ │ │ ├── ReturnsOneMarkupSegmentIfNoCodeBlocksEncountered.stree.txt │ │ │ ├── WithDoubleTransitionAtBeginningOfAttributeValue_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionAtBeginningOfAttributeValue_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransitionAtEndOfAttributeValue_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionAtEndOfAttributeValue_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransitionBetweenAttributeValue_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionBetweenAttributeValue_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransitionInAttributeValue_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionInAttributeValue_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransitionInEmail_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionInEmail_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransitionInRegex_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionInRegex_DoesNotThrow.stree.txt │ │ │ ├── WithDoubleTransitionWithExpressionBlock_DoesNotThrow.cspans.txt │ │ │ ├── WithDoubleTransitionWithExpressionBlock_DoesNotThrow.stree.txt │ │ │ ├── WithUnexpectedTransitionsInAttributeValue_Throws.cspans.txt │ │ │ ├── WithUnexpectedTransitionsInAttributeValue_Throws.diag.txt │ │ │ ├── WithUnexpectedTransitionsInAttributeValue_Throws.stree.txt │ │ │ ├── WithinSectionDoesNotCreateDocumentLevelSpan.cspans.txt │ │ │ └── WithinSectionDoesNotCreateDocumentLevelSpan.stree.txt │ │ ├── HtmlErrorTest │ │ │ ├── AllowsInvalidTagNamesAsLongAsParserCanIdentifyEndTag.cspans.txt │ │ │ ├── AllowsInvalidTagNamesAsLongAsParserCanIdentifyEndTag.stree.txt │ │ │ ├── ErrorIfEndTextTagContainsTextAfterName.cspans.txt │ │ │ ├── ErrorIfEndTextTagContainsTextAfterName.diag.txt │ │ │ ├── ErrorIfEndTextTagContainsTextAfterName.stree.txt │ │ │ ├── ErrorIfStartTextTagContainsTextAfterName.cspans.txt │ │ │ ├── ErrorIfStartTextTagContainsTextAfterName.diag.txt │ │ │ ├── ErrorIfStartTextTagContainsTextAfterName.stree.txt │ │ │ ├── StartingWithEndTagErrorsThenOutputsMarkupSegmentAndEndsBlock.cspans.txt │ │ │ ├── StartingWithEndTagErrorsThenOutputsMarkupSegmentAndEndsBlock.diag.txt │ │ │ ├── StartingWithEndTagErrorsThenOutputsMarkupSegmentAndEndsBlock.stree.txt │ │ │ ├── WithUnclosedTagAtEOFErrorsOnMissingEndTag.cspans.txt │ │ │ ├── WithUnclosedTagAtEOFErrorsOnMissingEndTag.diag.txt │ │ │ ├── WithUnclosedTagAtEOFErrorsOnMissingEndTag.stree.txt │ │ │ ├── WithUnclosedTopLevelTagErrorsOnOutermostUnclosedTag.cspans.txt │ │ │ ├── WithUnclosedTopLevelTagErrorsOnOutermostUnclosedTag.diag.txt │ │ │ ├── WithUnclosedTopLevelTagErrorsOnOutermostUnclosedTag.stree.txt │ │ │ ├── WithUnfinishedTagAtEOFErrorsWithIncompleteTag.cspans.txt │ │ │ ├── WithUnfinishedTagAtEOFErrorsWithIncompleteTag.diag.txt │ │ │ └── WithUnfinishedTagAtEOFErrorsWithIncompleteTag.stree.txt │ │ ├── HtmlTagsTest │ │ │ ├── CDataTag.cspans.txt │ │ │ ├── CDataTag.stree.txt │ │ │ ├── CommentTag.cspans.txt │ │ │ ├── CommentTag.stree.txt │ │ │ ├── DocTypeTag.cspans.txt │ │ │ ├── DocTypeTag.stree.txt │ │ │ ├── ElementTags.cspans.txt │ │ │ ├── ElementTags.stree.txt │ │ │ ├── EmptyTag.cspans.txt │ │ │ ├── EmptyTag.stree.txt │ │ │ ├── EmptyTagNestsLikeNormalTag.cspans.txt │ │ │ ├── EmptyTagNestsLikeNormalTag.diag.txt │ │ │ ├── EmptyTagNestsLikeNormalTag.stree.txt │ │ │ ├── IncompleteVoidElementEndTag.cspans.txt │ │ │ ├── IncompleteVoidElementEndTag.diag.txt │ │ │ ├── IncompleteVoidElementEndTag.stree.txt │ │ │ ├── ProcessingInstructionTag.cspans.txt │ │ │ ├── ProcessingInstructionTag.stree.txt │ │ │ ├── ScriptTag.cspans.txt │ │ │ ├── ScriptTag.stree.txt │ │ │ ├── ScriptTag_Incomplete.cspans.txt │ │ │ ├── ScriptTag_Incomplete.stree.txt │ │ │ ├── ScriptTag_Invalid.cspans.txt │ │ │ ├── ScriptTag_Invalid.stree.txt │ │ │ ├── ScriptTag_WithNestedBeginTag.cspans.txt │ │ │ ├── ScriptTag_WithNestedBeginTag.stree.txt │ │ │ ├── ScriptTag_WithNestedEndTag.cspans.txt │ │ │ ├── ScriptTag_WithNestedEndTag.stree.txt │ │ │ ├── ScriptTag_WithNestedMalformedTag.cspans.txt │ │ │ ├── ScriptTag_WithNestedMalformedTag.stree.txt │ │ │ ├── ScriptTag_WithNestedTag.cspans.txt │ │ │ ├── ScriptTag_WithNestedTag.stree.txt │ │ │ ├── TextTags.cspans.txt │ │ │ ├── TextTags.stree.txt │ │ │ ├── VoidElementFollowedByCloseTag.cspans.txt │ │ │ ├── VoidElementFollowedByCloseTag.stree.txt │ │ │ ├── VoidElementFollowedByContent.cspans.txt │ │ │ ├── VoidElementFollowedByContent.stree.txt │ │ │ ├── VoidElementFollowedByOtherTag.cspans.txt │ │ │ └── VoidElementFollowedByOtherTag.stree.txt │ │ ├── HtmlToCodeSwitchTest │ │ │ ├── CSharpCodeParserDoesNotAcceptLeadingOrTrailingWhitespaceInDesignMode.cspans.txt │ │ │ ├── CSharpCodeParserDoesNotAcceptLeadingOrTrailingWhitespaceInDesignMode.stree.txt │ │ │ ├── DoesNotSwitchToCodeOnEmailAddressInAttribute.cspans.txt │ │ │ ├── DoesNotSwitchToCodeOnEmailAddressInAttribute.stree.txt │ │ │ ├── DoesNotSwitchToCodeOnEmailAddressInText.cspans.txt │ │ │ ├── DoesNotSwitchToCodeOnEmailAddressInText.stree.txt │ │ │ ├── GivesWhitespacePreceedingToCodeIfThereIsNoMarkupOnThatLine.cspans.txt │ │ │ ├── GivesWhitespacePreceedingToCodeIfThereIsNoMarkupOnThatLine.stree.txt │ │ │ ├── ParseDocumentGivesWhitespacePreceedingToCodeIfThereIsNoMarkupOnThatLine.cspans.txt │ │ │ ├── ParseDocumentGivesWhitespacePreceedingToCodeIfThereIsNoMarkupOnThatLine.stree.txt │ │ │ ├── ParseDocumentTreatsPairsOfAtSignsAsEscapeSequence.cspans.txt │ │ │ ├── ParseDocumentTreatsPairsOfAtSignsAsEscapeSequence.stree.txt │ │ │ ├── ParseDocumentTreatsTwoAtSignsAsEscapeSequence.cspans.txt │ │ │ ├── ParseDocumentTreatsTwoAtSignsAsEscapeSequence.stree.txt │ │ │ ├── ParsesCodeWithinSingleLineMarkup.cspans.txt │ │ │ ├── ParsesCodeWithinSingleLineMarkup.stree.txt │ │ │ ├── SectionBodyTreatsPairsOfAtSignsAsEscapeSequence.cspans.txt │ │ │ ├── SectionBodyTreatsPairsOfAtSignsAsEscapeSequence.stree.txt │ │ │ ├── SectionBodyTreatsTwoAtSignsAsEscapeSequence.cspans.txt │ │ │ ├── SectionBodyTreatsTwoAtSignsAsEscapeSequence.stree.txt │ │ │ ├── SectionContextGivesWhitespacePreceedingToCodeIfThereIsNoMarkupOnThatLine.cspans.txt │ │ │ ├── SectionContextGivesWhitespacePreceedingToCodeIfThereIsNoMarkupOnThatLine.diag.txt │ │ │ ├── SectionContextGivesWhitespacePreceedingToCodeIfThereIsNoMarkupOnThatLine.stree.txt │ │ │ ├── SupportsCodeWithinCDataDeclaration.cspans.txt │ │ │ ├── SupportsCodeWithinCDataDeclaration.stree.txt │ │ │ ├── SupportsCodeWithinComment.cspans.txt │ │ │ ├── SupportsCodeWithinComment.stree.txt │ │ │ ├── SupportsCodeWithinSGMLDeclaration.cspans.txt │ │ │ ├── SupportsCodeWithinSGMLDeclaration.stree.txt │ │ │ ├── SupportsCodeWithinXMLProcessingInstruction.cspans.txt │ │ │ ├── SupportsCodeWithinXMLProcessingInstruction.stree.txt │ │ │ ├── SwitchesToCodeWhenSwapCharacterEncounteredInAttributeValue.cspans.txt │ │ │ ├── SwitchesToCodeWhenSwapCharacterEncounteredInAttributeValue.stree.txt │ │ │ ├── SwitchesToCodeWhenSwapCharacterEncounteredInTagContent.cspans.txt │ │ │ ├── SwitchesToCodeWhenSwapCharacterEncounteredInTagContent.stree.txt │ │ │ ├── SwitchesToCodeWhenSwapCharacterEncounteredMidTag.cspans.txt │ │ │ ├── SwitchesToCodeWhenSwapCharacterEncounteredMidTag.stree.txt │ │ │ ├── SwitchesWhenCharacterBeforeSwapIsNonAlphanumeric.cspans.txt │ │ │ ├── SwitchesWhenCharacterBeforeSwapIsNonAlphanumeric.stree.txt │ │ │ ├── TreatsPairsOfAtSignsAsEscapeSequence.cspans.txt │ │ │ ├── TreatsPairsOfAtSignsAsEscapeSequence.stree.txt │ │ │ ├── TreatsTwoAtSignsAsEscapeSequence.cspans.txt │ │ │ └── TreatsTwoAtSignsAsEscapeSequence.stree.txt │ │ ├── MarkupElementGroupingTest │ │ │ ├── Handles_DoesNotSpecialCase_VoidTags.cspans.txt │ │ │ ├── Handles_DoesNotSpecialCase_VoidTags.stree.txt │ │ │ ├── Handles_EndTagsWithMissingStartTags.cspans.txt │ │ │ ├── Handles_EndTagsWithMissingStartTags.stree.txt │ │ │ ├── Handles_IncompleteTags.cspans.txt │ │ │ ├── Handles_IncompleteTags.stree.txt │ │ │ ├── Handles_MalformedTags_RecoversSuccessfully.cspans.txt │ │ │ ├── Handles_MalformedTags_RecoversSuccessfully.stree.txt │ │ │ ├── Handles_MisplacedEndTags_RecoversSuccessfully.cspans.txt │ │ │ ├── Handles_MisplacedEndTags_RecoversSuccessfully.stree.txt │ │ │ ├── Handles_SelfClosingTags.cspans.txt │ │ │ ├── Handles_SelfClosingTags.stree.txt │ │ │ ├── Handles_SpecialCasesVoidTags_WithNoEndTags.cspans.txt │ │ │ ├── Handles_SpecialCasesVoidTags_WithNoEndTags.stree.txt │ │ │ ├── Handles_StartTagsWithMissingEndTags.cspans.txt │ │ │ ├── Handles_StartTagsWithMissingEndTags.stree.txt │ │ │ ├── Handles_ValidNestedTags.cspans.txt │ │ │ ├── Handles_ValidNestedTags.stree.txt │ │ │ ├── Handles_ValidNestedTagsMixedWithCode.cspans.txt │ │ │ ├── Handles_ValidNestedTagsMixedWithCode.stree.txt │ │ │ ├── Handles_ValidTags.cspans.txt │ │ │ └── Handles_ValidTags.stree.txt │ │ ├── RazorDirectivesTest │ │ │ ├── AddTagHelperDirective_EndQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ ├── AddTagHelperDirective_EndQuoteRequiresDoubleQuotesAroundValue.diag.txt │ │ │ ├── AddTagHelperDirective_EndQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ ├── AddTagHelperDirective_InvalidLookupText_AddsError.cspans.txt │ │ │ ├── AddTagHelperDirective_InvalidLookupText_AddsError.stree.txt │ │ │ ├── AddTagHelperDirective_NoValue_Invalid.cspans.txt │ │ │ ├── AddTagHelperDirective_NoValue_Invalid.stree.txt │ │ │ ├── AddTagHelperDirective_RequiresValue.cspans.txt │ │ │ ├── AddTagHelperDirective_RequiresValue.stree.txt │ │ │ ├── AddTagHelperDirective_SingleQuotes_AddsError.cspans.txt │ │ │ ├── AddTagHelperDirective_SingleQuotes_AddsError.stree.txt │ │ │ ├── AddTagHelperDirective_StartQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ ├── AddTagHelperDirective_StartQuoteRequiresDoubleQuotesAroundValue.diag.txt │ │ │ ├── AddTagHelperDirective_StartQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ ├── AddTagHelperDirective_SupportsSpaces.cspans.txt │ │ │ ├── AddTagHelperDirective_SupportsSpaces.stree.txt │ │ │ ├── AddTagHelperDirective_WithQuotes_InvalidLookupText_AddsError.cspans.txt │ │ │ ├── AddTagHelperDirective_WithQuotes_InvalidLookupText_AddsError.stree.txt │ │ │ ├── BuiltInDirectiveDoesNotErorrIfNotAtStartOfLineBecauseOfWhitespace.cspans.txt │ │ │ ├── BuiltInDirectiveDoesNotErorrIfNotAtStartOfLineBecauseOfWhitespace.stree.txt │ │ │ ├── BuiltInDirectiveErrorsIfNotAtStartOfLine.cspans.txt │ │ │ ├── BuiltInDirectiveErrorsIfNotAtStartOfLine.stree.txt │ │ │ ├── DirectiveDescriptor_AllowsNullableTypes.cspans.txt │ │ │ ├── DirectiveDescriptor_AllowsNullableTypes.stree.txt │ │ │ ├── DirectiveDescriptor_AllowsTupleTypes.cspans.txt │ │ │ ├── DirectiveDescriptor_AllowsTupleTypes.stree.txt │ │ │ ├── DirectiveDescriptor_AllowsTupleTypes_IgnoresTrailingWhitespace.cspans.txt │ │ │ ├── DirectiveDescriptor_AllowsTupleTypes_IgnoresTrailingWhitespace.stree.txt │ │ │ ├── DirectiveDescriptor_AllowsWhiteSpaceAroundTokens.cspans.txt │ │ │ ├── DirectiveDescriptor_AllowsWhiteSpaceAroundTokens.stree.txt │ │ │ ├── DirectiveDescriptor_AttributeToken_BalancesBrackets.cspans.txt │ │ │ ├── DirectiveDescriptor_AttributeToken_BalancesBrackets.stree.txt │ │ │ ├── DirectiveDescriptor_AttributeToken_ErrorsIfDoesNotStartWithOpenBracket.cspans.txt │ │ │ ├── DirectiveDescriptor_AttributeToken_ErrorsIfDoesNotStartWithOpenBracket.diag.txt │ │ │ ├── DirectiveDescriptor_AttributeToken_ErrorsIfDoesNotStartWithOpenBracket.stree.txt │ │ │ ├── DirectiveDescriptor_CanHandleEOFIncompleteNamespaceTokens.cspans.txt │ │ │ ├── DirectiveDescriptor_CanHandleEOFIncompleteNamespaceTokens.diag.txt │ │ │ ├── DirectiveDescriptor_CanHandleEOFIncompleteNamespaceTokens.stree.txt │ │ │ ├── DirectiveDescriptor_CanHandleEOFInvalidNamespaceTokens.cspans.txt │ │ │ ├── DirectiveDescriptor_CanHandleEOFInvalidNamespaceTokens.diag.txt │ │ │ ├── DirectiveDescriptor_CanHandleEOFInvalidNamespaceTokens.stree.txt │ │ │ ├── DirectiveDescriptor_CanHandleIncompleteNamespaceTokens.cspans.txt │ │ │ ├── DirectiveDescriptor_CanHandleIncompleteNamespaceTokens.diag.txt │ │ │ ├── DirectiveDescriptor_CanHandleIncompleteNamespaceTokens.stree.txt │ │ │ ├── DirectiveDescriptor_CanHandleInvalidNamespaceTokens.cspans.txt │ │ │ ├── DirectiveDescriptor_CanHandleInvalidNamespaceTokens.diag.txt │ │ │ ├── DirectiveDescriptor_CanHandleInvalidNamespaceTokens.stree.txt │ │ │ ├── DirectiveDescriptor_ErrorsExtraContentAfterDirective.cspans.txt │ │ │ ├── DirectiveDescriptor_ErrorsExtraContentAfterDirective.diag.txt │ │ │ ├── DirectiveDescriptor_ErrorsExtraContentAfterDirective.stree.txt │ │ │ ├── DirectiveDescriptor_ErrorsForInvalidMemberTokens.cspans.txt │ │ │ ├── DirectiveDescriptor_ErrorsForInvalidMemberTokens.diag.txt │ │ │ ├── DirectiveDescriptor_ErrorsForInvalidMemberTokens.stree.txt │ │ │ ├── DirectiveDescriptor_ErrorsWhenEOFBeforeDirectiveBlockStart.cspans.txt │ │ │ ├── DirectiveDescriptor_ErrorsWhenEOFBeforeDirectiveBlockStart.diag.txt │ │ │ ├── DirectiveDescriptor_ErrorsWhenEOFBeforeDirectiveBlockStart.stree.txt │ │ │ ├── DirectiveDescriptor_ErrorsWhenExtraContentBeforeBlockStart.cspans.txt │ │ │ ├── DirectiveDescriptor_ErrorsWhenExtraContentBeforeBlockStart.diag.txt │ │ │ ├── DirectiveDescriptor_ErrorsWhenExtraContentBeforeBlockStart.stree.txt │ │ │ ├── DirectiveDescriptor_ErrorsWhenMissingEndBrace.cspans.txt │ │ │ ├── DirectiveDescriptor_ErrorsWhenMissingEndBrace.diag.txt │ │ │ ├── DirectiveDescriptor_ErrorsWhenMissingEndBrace.stree.txt │ │ │ ├── DirectiveDescriptor_FileScopedMultipleOccurring_CanHaveDuplicates.cspans.txt │ │ │ ├── DirectiveDescriptor_FileScopedMultipleOccurring_CanHaveDuplicates.stree.txt │ │ │ ├── DirectiveDescriptor_FileScopedSinglyOccurring_ErrorsIfDuplicate.cspans.txt │ │ │ ├── DirectiveDescriptor_FileScopedSinglyOccurring_ErrorsIfDuplicate.diag.txt │ │ │ ├── DirectiveDescriptor_FileScopedSinglyOccurring_ErrorsIfDuplicate.stree.txt │ │ │ ├── DirectiveDescriptor_FileScoped_CanBeBeneathOtherDirectives.cspans.txt │ │ │ ├── DirectiveDescriptor_FileScoped_CanBeBeneathOtherDirectives.stree.txt │ │ │ ├── DirectiveDescriptor_FileScoped_CanBeBeneathOtherWhiteSpaceCommentsAndDirectives.cspans.txt │ │ │ ├── DirectiveDescriptor_FileScoped_CanBeBeneathOtherWhiteSpaceCommentsAndDirectives.stree.txt │ │ │ ├── DirectiveDescriptor_GenericConstraintErrorsWhenConstraintIdentifierIsDifferent.cspans.txt │ │ │ ├── DirectiveDescriptor_GenericConstraintErrorsWhenConstraintIdentifierIsDifferent.diag.txt │ │ │ ├── DirectiveDescriptor_GenericConstraintErrorsWhenConstraintIdentifierIsDifferent.stree.txt │ │ │ ├── DirectiveDescriptor_GenericConstraintTokenProducesErrorWhenFirstTokenIsNotWhereKeyword.cspans.txt │ │ │ ├── DirectiveDescriptor_GenericConstraintTokenProducesErrorWhenFirstTokenIsNotWhereKeyword.diag.txt │ │ │ ├── DirectiveDescriptor_GenericConstraintTokenProducesErrorWhenFirstTokenIsNotWhereKeyword.stree.txt │ │ │ ├── DirectiveDescriptor_GenericConstraintTokenWorksWhenAtEndOfFile.cspans.txt │ │ │ ├── DirectiveDescriptor_GenericConstraintTokenWorksWhenAtEndOfFile.stree.txt │ │ │ ├── DirectiveDescriptor_MultilineAttributeToken_BalancesBrackets.cspans.txt │ │ │ ├── DirectiveDescriptor_MultilineAttributeToken_BalancesBrackets.stree.txt │ │ │ ├── DirectiveDescriptor_NoErrorsSemicolonAfterDirective.cspans.txt │ │ │ ├── DirectiveDescriptor_NoErrorsSemicolonAfterDirective.stree.txt │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForNonStringValue.cspans.txt │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForNonStringValue.diag.txt │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForNonStringValue.stree.txt │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForPartialQuotedValue.cspans.txt │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForPartialQuotedValue.diag.txt │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForPartialQuotedValue.stree.txt │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForSingleQuotedValue.cspans.txt │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForSingleQuotedValue.diag.txt │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForSingleQuotedValue.stree.txt │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForUnquotedValue.cspans.txt │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForUnquotedValue.diag.txt │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForUnquotedValue.stree.txt │ │ │ ├── DirectiveDescriptor_TokensMustBeSeparatedBySpace.cspans.txt │ │ │ ├── DirectiveDescriptor_TokensMustBeSeparatedBySpace.diag.txt │ │ │ ├── DirectiveDescriptor_TokensMustBeSeparatedBySpace.stree.txt │ │ │ ├── DirectiveDescriptor_UnderstandsAttributeTokens.cspans.txt │ │ │ ├── DirectiveDescriptor_UnderstandsAttributeTokens.stree.txt │ │ │ ├── DirectiveDescriptor_UnderstandsCodeBlocks.cspans.txt │ │ │ ├── DirectiveDescriptor_UnderstandsCodeBlocks.stree.txt │ │ │ ├── DirectiveDescriptor_UnderstandsGenericConstraintsToken.cspans.txt │ │ │ ├── DirectiveDescriptor_UnderstandsGenericConstraintsToken.stree.txt │ │ │ ├── DirectiveDescriptor_UnderstandsMemberTokens.cspans.txt │ │ │ ├── DirectiveDescriptor_UnderstandsMemberTokens.stree.txt │ │ │ ├── DirectiveDescriptor_UnderstandsMultipleTokens.cspans.txt │ │ │ ├── DirectiveDescriptor_UnderstandsMultipleTokens.stree.txt │ │ │ ├── DirectiveDescriptor_UnderstandsRazorBlocks.cspans.txt │ │ │ ├── DirectiveDescriptor_UnderstandsRazorBlocks.stree.txt │ │ │ ├── DirectiveDescriptor_UnderstandsStringTokens.cspans.txt │ │ │ ├── DirectiveDescriptor_UnderstandsStringTokens.stree.txt │ │ │ ├── DirectiveDescriptor_UnderstandsTypeTokens.cspans.txt │ │ │ ├── DirectiveDescriptor_UnderstandsTypeTokens.stree.txt │ │ │ ├── DirectiveDescriptor_WorksWhenAtEndOfFile.cspans.txt │ │ │ ├── DirectiveDescriptor_WorksWhenAtEndOfFile.stree.txt │ │ │ ├── Directives_CanUseReservedWord_Class.cspans.txt │ │ │ ├── Directives_CanUseReservedWord_Class.stree.txt │ │ │ ├── Directives_CanUseReservedWord_Namespace.cspans.txt │ │ │ ├── Directives_CanUseReservedWord_Namespace.stree.txt │ │ │ ├── Directives_ReservedWordInsideCodeBlock.cspans.txt │ │ │ ├── Directives_ReservedWordInsideCodeBlock.stree.txt │ │ │ ├── EmptyFunctionsDirective.cspans.txt │ │ │ ├── EmptyFunctionsDirective.stree.txt │ │ │ ├── ExtensibleDirectiveDoesNotErorrIfNotAtStartOfLineBecauseOfWhitespace.cspans.txt │ │ │ ├── ExtensibleDirectiveDoesNotErorrIfNotAtStartOfLineBecauseOfWhitespace.stree.txt │ │ │ ├── ExtensibleDirectiveErrorsIfNotAtStartOfLine.cspans.txt │ │ │ ├── ExtensibleDirectiveErrorsIfNotAtStartOfLine.diag.txt │ │ │ ├── ExtensibleDirectiveErrorsIfNotAtStartOfLine.stree.txt │ │ │ ├── InheritsDirectiveSupportsArrays.cspans.txt │ │ │ ├── InheritsDirectiveSupportsArrays.stree.txt │ │ │ ├── InheritsDirectiveSupportsNestedGenerics.cspans.txt │ │ │ ├── InheritsDirectiveSupportsNestedGenerics.stree.txt │ │ │ ├── InheritsDirectiveSupportsTypeKeywords.cspans.txt │ │ │ ├── InheritsDirectiveSupportsTypeKeywords.stree.txt │ │ │ ├── OptionalDirectiveTokens_AreSkipped.cspans.txt │ │ │ ├── OptionalDirectiveTokens_AreSkipped.stree.txt │ │ │ ├── OptionalDirectiveTokens_WithBraces_AreParsed.cspans.txt │ │ │ ├── OptionalDirectiveTokens_WithBraces_AreParsed.stree.txt │ │ │ ├── OptionalDirectiveTokens_WithMultipleOptionalTokens_AreParsed.cspans.txt │ │ │ ├── OptionalDirectiveTokens_WithMultipleOptionalTokens_AreParsed.stree.txt │ │ │ ├── OptionalDirectiveTokens_WithSimpleTokens_AreParsed.cspans.txt │ │ │ ├── OptionalDirectiveTokens_WithSimpleTokens_AreParsed.stree.txt │ │ │ ├── OptionalMemberTokens_WithMemberSpecified_IsParsed.cspans.txt │ │ │ ├── OptionalMemberTokens_WithMemberSpecified_IsParsed.stree.txt │ │ │ ├── OptionalMemberTokens_WithMissingMember_IsParsed.cspans.txt │ │ │ ├── OptionalMemberTokens_WithMissingMember_IsParsed.stree.txt │ │ │ ├── Parse_FunctionsDirective.cspans.txt │ │ │ ├── Parse_FunctionsDirective.stree.txt │ │ │ ├── Parse_SectionDirective.cspans.txt │ │ │ ├── Parse_SectionDirective.stree.txt │ │ │ ├── Parser_ParsesNamespaceDirectiveToken_WithMultipleSegments.cspans.txt │ │ │ ├── Parser_ParsesNamespaceDirectiveToken_WithMultipleSegments.stree.txt │ │ │ ├── Parser_ParsesNamespaceDirectiveToken_WithSingleSegment.cspans.txt │ │ │ ├── Parser_ParsesNamespaceDirectiveToken_WithSingleSegment.stree.txt │ │ │ ├── RemoveTagHelperDirective_EndQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ ├── RemoveTagHelperDirective_EndQuoteRequiresDoubleQuotesAroundValue.diag.txt │ │ │ ├── RemoveTagHelperDirective_EndQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ ├── RemoveTagHelperDirective_InvalidLookupText_AddsError.cspans.txt │ │ │ ├── RemoveTagHelperDirective_InvalidLookupText_AddsError.stree.txt │ │ │ ├── RemoveTagHelperDirective_NoValue_Invalid.cspans.txt │ │ │ ├── RemoveTagHelperDirective_NoValue_Invalid.stree.txt │ │ │ ├── RemoveTagHelperDirective_RequiresValue.cspans.txt │ │ │ ├── RemoveTagHelperDirective_RequiresValue.stree.txt │ │ │ ├── RemoveTagHelperDirective_SingleQuotes_AddsError.cspans.txt │ │ │ ├── RemoveTagHelperDirective_SingleQuotes_AddsError.stree.txt │ │ │ ├── RemoveTagHelperDirective_StartQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ ├── RemoveTagHelperDirective_StartQuoteRequiresDoubleQuotesAroundValue.diag.txt │ │ │ ├── RemoveTagHelperDirective_StartQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ ├── RemoveTagHelperDirective_SupportsSpaces.cspans.txt │ │ │ ├── RemoveTagHelperDirective_SupportsSpaces.stree.txt │ │ │ ├── RemoveTagHelperDirective_WithQuotes_InvalidLookupText_AddsError.cspans.txt │ │ │ ├── RemoveTagHelperDirective_WithQuotes_InvalidLookupText_AddsError.stree.txt │ │ │ ├── TagHelperPrefixDirective_EndQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ ├── TagHelperPrefixDirective_EndQuoteRequiresDoubleQuotesAroundValue.diag.txt │ │ │ ├── TagHelperPrefixDirective_EndQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ ├── TagHelperPrefixDirective_NoValueSucceeds.cspans.txt │ │ │ ├── TagHelperPrefixDirective_NoValueSucceeds.stree.txt │ │ │ ├── TagHelperPrefixDirective_RequiresValue.cspans.txt │ │ │ ├── TagHelperPrefixDirective_RequiresValue.stree.txt │ │ │ ├── TagHelperPrefixDirective_StartQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ ├── TagHelperPrefixDirective_StartQuoteRequiresDoubleQuotesAroundValue.diag.txt │ │ │ ├── TagHelperPrefixDirective_StartQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ ├── TagHelperPrefixDirective_Succeeds.cspans.txt │ │ │ ├── TagHelperPrefixDirective_Succeeds.stree.txt │ │ │ ├── TagHelperPrefixDirective_WithQuotes_Succeeds.cspans.txt │ │ │ ├── TagHelperPrefixDirective_WithQuotes_Succeeds.stree.txt │ │ │ ├── TypeParam_WithSemicolon.cspans.txt │ │ │ ├── TypeParam_WithSemicolon.stree.txt │ │ │ ├── TypeParam_WithoutSemicolon.cspans.txt │ │ │ └── TypeParam_WithoutSemicolon.stree.txt │ │ ├── TagHelperBlockRewriterTest │ │ │ ├── AllowsCompatibleTagStructures1.cspans.txt │ │ │ ├── AllowsCompatibleTagStructures1.stree.txt │ │ │ ├── AllowsCompatibleTagStructures1.tspans.txt │ │ │ ├── AllowsCompatibleTagStructures2.cspans.txt │ │ │ ├── AllowsCompatibleTagStructures2.stree.txt │ │ │ ├── AllowsCompatibleTagStructures2.tspans.txt │ │ │ ├── AllowsCompatibleTagStructures3.cspans.txt │ │ │ ├── AllowsCompatibleTagStructures3.stree.txt │ │ │ ├── AllowsCompatibleTagStructures3.tspans.txt │ │ │ ├── AllowsCompatibleTagStructures4.cspans.txt │ │ │ ├── AllowsCompatibleTagStructures4.stree.txt │ │ │ ├── AllowsCompatibleTagStructures4.tspans.txt │ │ │ ├── AllowsCompatibleTagStructures5.cspans.txt │ │ │ ├── AllowsCompatibleTagStructures5.stree.txt │ │ │ ├── AllowsCompatibleTagStructures5.tspans.txt │ │ │ ├── AllowsCompatibleTagStructures6.cspans.txt │ │ │ ├── AllowsCompatibleTagStructures6.stree.txt │ │ │ ├── AllowsCompatibleTagStructures6.tspans.txt │ │ │ ├── AllowsCompatibleTagStructures7.cspans.txt │ │ │ ├── AllowsCompatibleTagStructures7.stree.txt │ │ │ ├── AllowsCompatibleTagStructures7.tspans.txt │ │ │ ├── AllowsCompatibleTagStructures8.cspans.txt │ │ │ ├── AllowsCompatibleTagStructures8.stree.txt │ │ │ ├── AllowsCompatibleTagStructures8.tspans.txt │ │ │ ├── AllowsCompatibleTagStructures_DirectiveAttribute_SelfClosing.cspans.txt │ │ │ ├── AllowsCompatibleTagStructures_DirectiveAttribute_SelfClosing.stree.txt │ │ │ ├── AllowsCompatibleTagStructures_DirectiveAttribute_Void.cspans.txt │ │ │ ├── AllowsCompatibleTagStructures_DirectiveAttribute_Void.stree.txt │ │ │ ├── CanHandleSymbolBoundAttributes1.cspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes1.diag.txt │ │ │ ├── CanHandleSymbolBoundAttributes1.stree.txt │ │ │ ├── CanHandleSymbolBoundAttributes1.tspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes2.cspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes2.diag.txt │ │ │ ├── CanHandleSymbolBoundAttributes2.stree.txt │ │ │ ├── CanHandleSymbolBoundAttributes2.tspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes3.cspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes3.diag.txt │ │ │ ├── CanHandleSymbolBoundAttributes3.stree.txt │ │ │ ├── CanHandleSymbolBoundAttributes3.tspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes4.cspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes4.diag.txt │ │ │ ├── CanHandleSymbolBoundAttributes4.stree.txt │ │ │ ├── CanHandleSymbolBoundAttributes4.tspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes5.cspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes5.diag.txt │ │ │ ├── CanHandleSymbolBoundAttributes5.stree.txt │ │ │ ├── CanHandleSymbolBoundAttributes5.tspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes6.cspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes6.diag.txt │ │ │ ├── CanHandleSymbolBoundAttributes6.stree.txt │ │ │ ├── CanHandleSymbolBoundAttributes6.tspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes7.cspans.txt │ │ │ ├── CanHandleSymbolBoundAttributes7.diag.txt │ │ │ ├── CanHandleSymbolBoundAttributes7.stree.txt │ │ │ ├── CanHandleSymbolBoundAttributes7.tspans.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure1.cspans.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure1.stree.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure1.tspans.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure2.cspans.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure2.stree.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure2.tspans.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure3.cspans.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure3.stree.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure3.tspans.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure4.cspans.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure4.stree.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure4.tspans.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure5.cspans.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure5.stree.txt │ │ │ ├── CanHandleWithoutEndTagTagStructure5.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes1.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes1.diag.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes1.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes1.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes10.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes10.diag.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes10.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes10.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes11.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes11.diag.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes11.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes11.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes12.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes12.diag.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes12.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes12.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes13.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes13.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes13.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes14.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes14.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes14.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes2.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes2.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes2.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes3.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes3.diag.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes3.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes3.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes4.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes4.diag.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes4.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes4.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes5.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes5.diag.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes5.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes5.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes6.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes6.diag.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes6.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes6.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes7.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes7.diag.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes7.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes7.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes8.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes8.diag.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes8.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes8.tspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes9.cspans.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes9.diag.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes9.stree.txt │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes9.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper1.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper1.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelper1.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelper1.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper2.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper2.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelper2.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelper2.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper3.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper3.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelper3.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelper3.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper4.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper4.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelper4.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelper4.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper5.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper5.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelper5.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelper5.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper6.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper6.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelper6.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelper6.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper7.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper7.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelper7.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelper7.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper8.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelper8.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelper8.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelper8.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes1.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes1.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes1.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes1.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes10.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes10.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes10.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes10.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes11.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes11.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes11.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes11.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes12.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes12.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes12.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes13.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes13.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes13.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes13.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes14.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes14.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes14.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes14.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes15.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes15.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes15.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes15.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes16.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes16.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes16.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes16.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes17.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes17.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes17.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes17.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes18.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes18.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes18.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes18.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes19.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes19.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes19.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes19.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes2.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes2.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes2.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes2.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes20.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes20.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes20.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes20.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes3.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes3.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes3.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes3.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes4.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes4.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes4.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes4.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes5.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes5.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes5.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes5.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes6.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes6.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes6.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes6.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes7.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes7.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes7.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes7.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes8.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes8.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes8.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes8.tspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes9.cspans.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes9.diag.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes9.stree.txt │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes9.tspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes1.cspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes1.stree.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes1.tspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes10.cspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes10.stree.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes10.tspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes11.cspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes11.stree.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes11.tspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes12.cspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes12.stree.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes12.tspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes2.cspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes2.stree.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes2.tspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes3.cspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes3.stree.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes3.tspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes4.cspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes4.stree.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes4.tspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes5.cspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes5.stree.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes5.tspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes6.cspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes6.stree.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes6.tspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes7.cspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes7.stree.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes7.tspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes8.cspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes8.stree.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes8.tspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes9.cspans.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes9.stree.txt │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes9.tspans.txt │ │ │ ├── FeatureDisabled_AddsErrorForMinimizedBooleanBoundAttributes.cspans.txt │ │ │ ├── FeatureDisabled_AddsErrorForMinimizedBooleanBoundAttributes.diag.txt │ │ │ ├── FeatureDisabled_AddsErrorForMinimizedBooleanBoundAttributes.stree.txt │ │ │ ├── FeatureDisabled_AddsErrorForMinimizedBooleanBoundAttributes.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block1.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block1.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block1.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block2.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block2.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block2.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block3.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block3.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block3.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block4.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block4.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block4.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block5.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block5.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block5.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block6.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block6.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block6.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block7.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block7.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block7.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document1.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document1.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document1.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document2.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document2.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document2.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document3.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document3.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document3.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document4.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document4.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document4.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document5.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document5.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document5.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document6.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document6.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document6.tspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document7.cspans.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document7.stree.txt │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document7.tspans.txt │ │ │ ├── Rewrites_ComponentDirectiveAttributes.cspans.txt │ │ │ ├── Rewrites_ComponentDirectiveAttributes.stree.txt │ │ │ ├── Rewrites_ComponentDirectiveAttributes.tspans.txt │ │ │ ├── Rewrites_MinimizedComponentDirectiveAttributes.cspans.txt │ │ │ ├── Rewrites_MinimizedComponentDirectiveAttributes.diag.txt │ │ │ ├── Rewrites_MinimizedComponentDirectiveAttributes.stree.txt │ │ │ ├── Rewrites_MinimizedComponentDirectiveAttributes.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml1.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml1.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml1.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml10.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml10.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml10.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml2.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml2.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml2.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml3.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml3.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml4.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml4.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml4.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml5.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml5.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml5.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml6.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml6.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml6.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml7.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml7.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml7.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml8.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml8.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml8.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml9.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml9.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml9.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper1.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper1.diag.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper1.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper1.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper2.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper2.diag.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper2.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper2.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper3.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper3.diag.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper3.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper3.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper4.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper4.diag.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper4.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper4.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks1.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks1.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks1.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks2.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks2.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks2.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks3.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks3.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks3.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks4.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks4.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks4.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks5.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks5.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks5.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks6.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks6.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks6.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks7.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks7.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks7.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks1.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks1.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks1.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks2.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks2.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks2.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks3.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks3.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks3.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks4.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks4.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks4.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks5.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks5.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks5.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks6.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks6.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks6.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks7.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks7.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks7.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks8.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks8.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks8.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks1.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks1.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks1.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks2.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks2.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks2.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks3.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks3.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks3.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks1.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks1.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks1.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks2.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks2.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks2.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks3.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks3.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks3.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks4.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks4.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks4.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers1.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers1.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers1.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers2.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers2.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers2.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers3.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers3.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers3.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers4.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers4.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers4.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers5.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers5.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers5.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers6.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers6.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers6.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers7.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers7.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers7.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers1.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers1.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers1.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers2.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers2.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers2.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers3.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers3.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers3.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes1.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes1.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes1.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes2.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes2.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes2.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes3.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes3.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes3.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes4.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes4.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes4.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes1.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes1.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes1.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes2.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes2.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes2.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes3.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes3.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes3.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes4.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes4.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes4.tspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes5.cspans.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes5.stree.txt │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes5.tspans.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers1.cspans.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers1.stree.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers1.tspans.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers2.cspans.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers2.stree.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers2.tspans.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers3.cspans.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers3.stree.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers3.tspans.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers4.cspans.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers4.stree.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers4.tspans.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers5.cspans.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers5.stree.txt │ │ │ ├── UnderstandsEmptyAttributeTagHelpers5.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block1.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block1.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block1.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block10.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block10.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block10.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block10.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block11.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block11.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block11.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block11.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block12.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block12.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block12.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block12.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block13.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block13.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block13.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block14.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block14.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block14.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block15.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block15.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block15.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block16.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block16.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block16.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block16.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block17.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block17.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block17.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block17.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block18.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block18.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block18.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block18.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block19.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block19.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block19.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block19.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block2.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block2.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block2.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block2.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block20.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block20.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block20.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block21.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block21.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block21.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block21.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block22.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block22.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block22.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block23.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block23.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block23.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block23.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block24.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block24.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block24.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block24.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block25.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block25.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block25.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block25.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block26.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block26.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block26.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block26.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block27.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block27.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block27.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block27.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block28.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block28.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block28.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block28.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block29.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block29.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block29.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block29.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block3.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block3.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block3.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block3.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block30.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block30.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block30.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block30.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block31.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block31.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block31.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block31.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block32.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block32.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block32.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block32.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block33.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block33.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block33.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block33.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block4.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block4.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block4.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block4.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block5.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block5.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block5.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block5.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block6.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block6.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block6.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block6.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block7.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block7.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block7.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block7.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block8.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block8.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block8.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block8.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block9.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block9.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block9.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Block9.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document1.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document1.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document1.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document10.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document10.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document10.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document10.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document11.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document11.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document11.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document11.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document12.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document12.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document12.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document12.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document13.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document13.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document13.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document14.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document14.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document14.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document15.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document15.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document15.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document16.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document16.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document16.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document16.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document17.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document17.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document17.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document17.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document18.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document18.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document18.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document18.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document19.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document19.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document19.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document19.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document2.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document2.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document2.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document2.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document20.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document20.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document20.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document21.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document21.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document21.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document21.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document22.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document22.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document22.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document23.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document23.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document23.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document23.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document24.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document24.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document24.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document24.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document25.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document25.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document25.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document25.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document26.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document26.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document26.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document26.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document27.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document27.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document27.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document27.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document28.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document28.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document28.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document28.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document29.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document29.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document29.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document29.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document3.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document3.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document3.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document3.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document30.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document30.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document30.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document30.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document31.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document31.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document31.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document31.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document32.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document32.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document32.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document32.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document33.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document33.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document33.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document33.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document4.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document4.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document4.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document4.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document5.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document5.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document5.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document5.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document6.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document6.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document6.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document6.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document7.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document7.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document7.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document7.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document8.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document8.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document8.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document8.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document9.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document9.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document9.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_Document9.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags1.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags1.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags1.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags1.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags2.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags2.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags2.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags2.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags3.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags3.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags3.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags3.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags4.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags4.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags4.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags4.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags5.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags5.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags5.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags5.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags6.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags6.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags6.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags6.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags7.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags7.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags7.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags7.tspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags8.cspans.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags8.diag.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags8.stree.txt │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags8.tspans.txt │ │ │ ├── UnderstandsMinimizedBooleanBoundAttributes.cspans.txt │ │ │ ├── UnderstandsMinimizedBooleanBoundAttributes.stree.txt │ │ │ ├── UnderstandsMinimizedBooleanBoundAttributes.tspans.txt │ │ │ ├── UnderstandsMultipartNonStringTagHelperAttributes.cspans.txt │ │ │ ├── UnderstandsMultipartNonStringTagHelperAttributes.stree.txt │ │ │ └── UnderstandsMultipartNonStringTagHelperAttributes.tspans.txt │ │ ├── TagHelperParseTreeRewriterTest │ │ │ ├── AllowsPrefixedTagHelpers1.cspans.txt │ │ │ ├── AllowsPrefixedTagHelpers1.stree.txt │ │ │ ├── AllowsPrefixedTagHelpers10.cspans.txt │ │ │ ├── AllowsPrefixedTagHelpers10.stree.txt │ │ │ ├── AllowsPrefixedTagHelpers10.tspans.txt │ │ │ ├── AllowsPrefixedTagHelpers11.cspans.txt │ │ │ ├── AllowsPrefixedTagHelpers11.stree.txt │ │ │ ├── AllowsPrefixedTagHelpers11.tspans.txt │ │ │ ├── AllowsPrefixedTagHelpers2.cspans.txt │ │ │ ├── AllowsPrefixedTagHelpers2.stree.txt │ │ │ ├── AllowsPrefixedTagHelpers3.cspans.txt │ │ │ ├── AllowsPrefixedTagHelpers3.stree.txt │ │ │ ├── AllowsPrefixedTagHelpers3.tspans.txt │ │ │ ├── AllowsPrefixedTagHelpers4.cspans.txt │ │ │ ├── AllowsPrefixedTagHelpers4.stree.txt │ │ │ ├── AllowsPrefixedTagHelpers4.tspans.txt │ │ │ ├── AllowsPrefixedTagHelpers5.cspans.txt │ │ │ ├── AllowsPrefixedTagHelpers5.stree.txt │ │ │ ├── AllowsPrefixedTagHelpers5.tspans.txt │ │ │ ├── AllowsPrefixedTagHelpers6.cspans.txt │ │ │ ├── AllowsPrefixedTagHelpers6.stree.txt │ │ │ ├── AllowsPrefixedTagHelpers7.cspans.txt │ │ │ ├── AllowsPrefixedTagHelpers7.stree.txt │ │ │ ├── AllowsPrefixedTagHelpers8.cspans.txt │ │ │ ├── AllowsPrefixedTagHelpers8.stree.txt │ │ │ ├── AllowsPrefixedTagHelpers8.tspans.txt │ │ │ ├── AllowsPrefixedTagHelpers9.cspans.txt │ │ │ ├── AllowsPrefixedTagHelpers9.stree.txt │ │ │ ├── AllowsPrefixedTagHelpers9.tspans.txt │ │ │ ├── AllowsRazorCommentsAsChildren.cspans.txt │ │ │ ├── AllowsRazorCommentsAsChildren.stree.txt │ │ │ ├── AllowsRazorCommentsAsChildren.tspans.txt │ │ │ ├── AllowsRazorMarkupInHtmlComment.cspans.txt │ │ │ ├── AllowsRazorMarkupInHtmlComment.stree.txt │ │ │ ├── AllowsRazorMarkupInHtmlComment.tspans.txt │ │ │ ├── AllowsSimpleHtmlCommentsAsChildren.cspans.txt │ │ │ ├── AllowsSimpleHtmlCommentsAsChildren.stree.txt │ │ │ ├── AllowsSimpleHtmlCommentsAsChildren.tspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag1.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag1.diag.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag1.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag2.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag2.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag3.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag3.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag4.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag4.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag5.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag5.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag1.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag1.diag.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag1.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag2.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag2.diag.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag2.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag3.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag3.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag4.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag4.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag5.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag5.diag.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag5.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag6.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag6.diag.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag6.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag7.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag7.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag7.tspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag8.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag8.diag.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag8.stree.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag9.cspans.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag9.diag.txt │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag9.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML1.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML1.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML2.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML2.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML3.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML3.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML4.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML4.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML5.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML5.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML6.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML6.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML7.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML7.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock1.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock1.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock1.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock2.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock2.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock2.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock3.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock3.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock3.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock4.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock4.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock4.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock5.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock5.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock5.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock6.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock6.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock6.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock7.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock7.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock7.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock8.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock8.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock8.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock1.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock1.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock1.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock2.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock2.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock2.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock3.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock3.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock3.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock4.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock4.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock4.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock5.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock5.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock5.stree.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock6.cspans.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock6.diag.txt │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock6.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData1.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData1.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData1.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData2.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData2.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData3.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData3.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData4.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData4.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData5.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData5.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData1.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData1.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData1.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData10.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData10.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData10.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData10.tspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData11.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData11.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData11.tspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData12.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData12.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData12.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData12.tspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData2.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData2.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData2.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData3.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData3.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData4.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData4.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData5.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData5.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData5.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData6.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData6.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData6.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData6.tspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData7.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData7.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData7.tspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData8.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData8.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData8.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData8.tspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData9.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData9.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData9.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData1.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData1.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData2.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData2.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData3.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData3.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData4.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData4.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData5.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData5.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData1.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData1.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData10.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData10.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData10.tspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData11.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData11.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData11.tspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData12.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData12.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData12.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData12.tspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData2.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData2.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData3.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData3.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData4.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData4.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData5.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData5.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData5.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData6.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData6.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData6.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData6.tspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData7.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData7.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData7.tspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData8.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData8.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData8.stree.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData8.tspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData9.cspans.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData9.diag.txt │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData9.stree.txt │ │ │ ├── CanHandleInvalidChildrenWithWhitespace.cspans.txt │ │ │ ├── CanHandleInvalidChildrenWithWhitespace.diag.txt │ │ │ ├── CanHandleInvalidChildrenWithWhitespace.stree.txt │ │ │ ├── CanHandleInvalidChildrenWithWhitespace.tspans.txt │ │ │ ├── CanHandleMultipleTagHelpersWithAllowedChildren.cspans.txt │ │ │ ├── CanHandleMultipleTagHelpersWithAllowedChildren.stree.txt │ │ │ ├── CanHandleMultipleTagHelpersWithAllowedChildren.tspans.txt │ │ │ ├── CanHandleMultipleTagHelpersWithAllowedChildren_OneNull.cspans.txt │ │ │ ├── CanHandleMultipleTagHelpersWithAllowedChildren_OneNull.stree.txt │ │ │ ├── CanHandleMultipleTagHelpersWithAllowedChildren_OneNull.tspans.txt │ │ │ ├── CanHandleStartTagOnlyTagTagMode.cspans.txt │ │ │ ├── CanHandleStartTagOnlyTagTagMode.stree.txt │ │ │ ├── CanHandleStartTagOnlyTagTagMode.tspans.txt │ │ │ ├── CreatesErrorForInconsistentTagStructures.cspans.txt │ │ │ ├── CreatesErrorForInconsistentTagStructures.diag.txt │ │ │ ├── CreatesErrorForInconsistentTagStructures.stree.txt │ │ │ ├── CreatesErrorForInconsistentTagStructures.tspans.txt │ │ │ ├── CreatesErrorForWithoutEndTagTagStructureForEndTags.cspans.txt │ │ │ ├── CreatesErrorForWithoutEndTagTagStructureForEndTags.diag.txt │ │ │ ├── CreatesErrorForWithoutEndTagTagStructureForEndTags.stree.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers1.cspans.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers1.diag.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers1.stree.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers2.cspans.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers2.diag.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers2.stree.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers3.cspans.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers3.diag.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers3.stree.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers4.cspans.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers4.diag.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers4.stree.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers5.cspans.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers5.diag.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers5.stree.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers6.cspans.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers6.diag.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers6.stree.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers7.cspans.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers7.diag.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers7.stree.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers8.cspans.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers8.diag.txt │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers8.stree.txt │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers1.cspans.txt │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers1.stree.txt │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers1.tspans.txt │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers2.cspans.txt │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers2.stree.txt │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers3.cspans.txt │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers3.stree.txt │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers3.tspans.txt │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers4.cspans.txt │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers4.stree.txt │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers4.tspans.txt │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags1.cspans.txt │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags1.stree.txt │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags2.cspans.txt │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags2.stree.txt │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags3.cspans.txt │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags3.stree.txt │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags4.cspans.txt │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags4.stree.txt │ │ │ ├── DoesntAllowSimpleHtmlCommentsAsChildrenWhenFeatureFlagIsOff.cspans.txt │ │ │ ├── DoesntAllowSimpleHtmlCommentsAsChildrenWhenFeatureFlagIsOff.diag.txt │ │ │ ├── DoesntAllowSimpleHtmlCommentsAsChildrenWhenFeatureFlagIsOff.stree.txt │ │ │ ├── DoesntAllowSimpleHtmlCommentsAsChildrenWhenFeatureFlagIsOff.tspans.txt │ │ │ ├── FailsForContentWithCommentsAsChildren.cspans.txt │ │ │ ├── FailsForContentWithCommentsAsChildren.diag.txt │ │ │ ├── FailsForContentWithCommentsAsChildren.stree.txt │ │ │ ├── FailsForContentWithCommentsAsChildren.tspans.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly1.cspans.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly1.stree.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly1.tspans.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly2.cspans.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly2.stree.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly2.tspans.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly3.cspans.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly3.stree.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly3.tspans.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly4.cspans.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly4.stree.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly5.cspans.txt │ │ │ ├── HandlesCaseSensitiveTagHelpersCorrectly5.stree.txt │ │ │ ├── HandlesMalformedNestedNonTagHelperTags_Correctly.cspans.txt │ │ │ ├── HandlesMalformedNestedNonTagHelperTags_Correctly.diag.txt │ │ │ ├── HandlesMalformedNestedNonTagHelperTags_Correctly.stree.txt │ │ │ ├── HandlesNonTagHelperStartAndEndVoidTags_Correctly.cspans.txt │ │ │ ├── HandlesNonTagHelperStartAndEndVoidTags_Correctly.stree.txt │ │ │ ├── InvalidStructure_UnderstandsTHPrefixAndAllowedChildrenAndRequireParent.cspans.txt │ │ │ ├── InvalidStructure_UnderstandsTHPrefixAndAllowedChildrenAndRequireParent.diag.txt │ │ │ ├── InvalidStructure_UnderstandsTHPrefixAndAllowedChildrenAndRequireParent.stree.txt │ │ │ ├── InvalidStructure_UnderstandsTHPrefixAndAllowedChildrenAndRequireParent.tspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly1.cspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly1.stree.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly1.tspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.cspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.stree.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.tspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly2.cspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly2.stree.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly2.tspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly3.cspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly3.stree.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly3.tspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly4.cspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly4.stree.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly4.tspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.cspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.stree.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.tspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.cspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.stree.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.tspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.cspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.stree.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.tspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.cspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.stree.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.tspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.cspans.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.stree.txt │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.tspans.txt │ │ │ ├── NonTagHelperChild_UnderstandsTagHelperPrefixAndAllowedChildren.cspans.txt │ │ │ ├── NonTagHelperChild_UnderstandsTagHelperPrefixAndAllowedChildren.stree.txt │ │ │ ├── NonTagHelperChild_UnderstandsTagHelperPrefixAndAllowedChildren.tspans.txt │ │ │ ├── RecoversWhenRequiredAttributeMismatchAndRestrictedChildren.cspans.txt │ │ │ ├── RecoversWhenRequiredAttributeMismatchAndRestrictedChildren.diag.txt │ │ │ ├── RecoversWhenRequiredAttributeMismatchAndRestrictedChildren.stree.txt │ │ │ ├── RecoversWhenRequiredAttributeMismatchAndRestrictedChildren.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly1.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly1.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly10.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly10.diag.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly10.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly10.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly11.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly11.diag.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly11.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly11.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly2.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly2.diag.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly2.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly2.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly3.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly3.diag.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly3.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly3.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly4.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly4.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly5.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly5.diag.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly5.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly5.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly6.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly6.diag.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly6.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly6.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly7.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly7.diag.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly7.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly7.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly8.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly8.diag.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly8.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly8.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly9.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly9.diag.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly9.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly9.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly1.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly1.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly11.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly11.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly11.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly12.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly12.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly12.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly13.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly13.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly13.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly14.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly14.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly15.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly15.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly16.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly16.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly16.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly17.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly17.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly17.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly18.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly18.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly18.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly19.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly19.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly19.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly2.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly2.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly20.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly20.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly20.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly21.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly21.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly21.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly22.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly22.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly22.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly23.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly23.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly23.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly24.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly24.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly24.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly25.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly25.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly25.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly26.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly26.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly26.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly27.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly27.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly27.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly28.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly28.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly28.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly29.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly29.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly29.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly3.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly3.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly30.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly30.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly30.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly4.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly4.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.tspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.cspans.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.stree.txt │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.tspans.txt │ │ │ ├── RewritesNestedTagHelperTagBlocks1.cspans.txt │ │ │ ├── RewritesNestedTagHelperTagBlocks1.stree.txt │ │ │ ├── RewritesNestedTagHelperTagBlocks1.tspans.txt │ │ │ ├── RewritesNestedTagHelperTagBlocks2.cspans.txt │ │ │ ├── RewritesNestedTagHelperTagBlocks2.stree.txt │ │ │ ├── RewritesNestedTagHelperTagBlocks2.tspans.txt │ │ │ ├── RewritesNestedTagHelperTagBlocks3.cspans.txt │ │ │ ├── RewritesNestedTagHelperTagBlocks3.stree.txt │ │ │ ├── RewritesNestedTagHelperTagBlocks3.tspans.txt │ │ │ ├── RewritesNestedTagHelperTagBlocks4.cspans.txt │ │ │ ├── RewritesNestedTagHelperTagBlocks4.stree.txt │ │ │ ├── RewritesNestedTagHelperTagBlocks4.tspans.txt │ │ │ ├── UnderstandsAllowedChildren1.cspans.txt │ │ │ ├── UnderstandsAllowedChildren1.stree.txt │ │ │ ├── UnderstandsAllowedChildren1.tspans.txt │ │ │ ├── UnderstandsAllowedChildren10.cspans.txt │ │ │ ├── UnderstandsAllowedChildren10.diag.txt │ │ │ ├── UnderstandsAllowedChildren10.stree.txt │ │ │ ├── UnderstandsAllowedChildren10.tspans.txt │ │ │ ├── UnderstandsAllowedChildren11.cspans.txt │ │ │ ├── UnderstandsAllowedChildren11.diag.txt │ │ │ ├── UnderstandsAllowedChildren11.stree.txt │ │ │ ├── UnderstandsAllowedChildren11.tspans.txt │ │ │ ├── UnderstandsAllowedChildren12.cspans.txt │ │ │ ├── UnderstandsAllowedChildren12.diag.txt │ │ │ ├── UnderstandsAllowedChildren12.stree.txt │ │ │ ├── UnderstandsAllowedChildren12.tspans.txt │ │ │ ├── UnderstandsAllowedChildren13.cspans.txt │ │ │ ├── UnderstandsAllowedChildren13.diag.txt │ │ │ ├── UnderstandsAllowedChildren13.stree.txt │ │ │ ├── UnderstandsAllowedChildren13.tspans.txt │ │ │ ├── UnderstandsAllowedChildren14.cspans.txt │ │ │ ├── UnderstandsAllowedChildren14.diag.txt │ │ │ ├── UnderstandsAllowedChildren14.stree.txt │ │ │ ├── UnderstandsAllowedChildren14.tspans.txt │ │ │ ├── UnderstandsAllowedChildren2.cspans.txt │ │ │ ├── UnderstandsAllowedChildren2.stree.txt │ │ │ ├── UnderstandsAllowedChildren2.tspans.txt │ │ │ ├── UnderstandsAllowedChildren3.cspans.txt │ │ │ ├── UnderstandsAllowedChildren3.diag.txt │ │ │ ├── UnderstandsAllowedChildren3.stree.txt │ │ │ ├── UnderstandsAllowedChildren3.tspans.txt │ │ │ ├── UnderstandsAllowedChildren4.cspans.txt │ │ │ ├── UnderstandsAllowedChildren4.diag.txt │ │ │ ├── UnderstandsAllowedChildren4.stree.txt │ │ │ ├── UnderstandsAllowedChildren4.tspans.txt │ │ │ ├── UnderstandsAllowedChildren5.cspans.txt │ │ │ ├── UnderstandsAllowedChildren5.diag.txt │ │ │ ├── UnderstandsAllowedChildren5.stree.txt │ │ │ ├── UnderstandsAllowedChildren5.tspans.txt │ │ │ ├── UnderstandsAllowedChildren6.cspans.txt │ │ │ ├── UnderstandsAllowedChildren6.diag.txt │ │ │ ├── UnderstandsAllowedChildren6.stree.txt │ │ │ ├── UnderstandsAllowedChildren6.tspans.txt │ │ │ ├── UnderstandsAllowedChildren7.cspans.txt │ │ │ ├── UnderstandsAllowedChildren7.diag.txt │ │ │ ├── UnderstandsAllowedChildren7.stree.txt │ │ │ ├── UnderstandsAllowedChildren7.tspans.txt │ │ │ ├── UnderstandsAllowedChildren8.cspans.txt │ │ │ ├── UnderstandsAllowedChildren8.diag.txt │ │ │ ├── UnderstandsAllowedChildren8.stree.txt │ │ │ ├── UnderstandsAllowedChildren8.tspans.txt │ │ │ ├── UnderstandsAllowedChildren9.cspans.txt │ │ │ ├── UnderstandsAllowedChildren9.diag.txt │ │ │ ├── UnderstandsAllowedChildren9.stree.txt │ │ │ ├── UnderstandsAllowedChildren9.tspans.txt │ │ │ ├── UnderstandsInvalidHtml.cspans.txt │ │ │ ├── UnderstandsInvalidHtml.stree.txt │ │ │ ├── UnderstandsInvalidHtml.tspans.txt │ │ │ ├── UnderstandsNestedRequiredParent1.cspans.txt │ │ │ ├── UnderstandsNestedRequiredParent1.stree.txt │ │ │ ├── UnderstandsNestedRequiredParent2.cspans.txt │ │ │ ├── UnderstandsNestedRequiredParent2.stree.txt │ │ │ ├── UnderstandsNestedRequiredParent2.tspans.txt │ │ │ ├── UnderstandsNestedRequiredParent3.cspans.txt │ │ │ ├── UnderstandsNestedRequiredParent3.stree.txt │ │ │ ├── UnderstandsNestedRequiredParent3.tspans.txt │ │ │ ├── UnderstandsNestedRequiredParent4.cspans.txt │ │ │ ├── UnderstandsNestedRequiredParent4.stree.txt │ │ │ ├── UnderstandsNestedRequiredParent5.cspans.txt │ │ │ ├── UnderstandsNestedRequiredParent5.stree.txt │ │ │ ├── UnderstandsNestedRequiredParent5.tspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent1.cspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent1.stree.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent1.tspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent2.cspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent2.stree.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent2.tspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent3.cspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent3.stree.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent3.tspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent4.cspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent4.stree.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent4.tspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent5.cspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent5.stree.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent5.tspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent6.cspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent6.stree.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent6.tspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent7.cspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent7.stree.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent7.tspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent8.cspans.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent8.stree.txt │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent8.tspans.txt │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAll.cspans.txt │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAll.diag.txt │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAll.stree.txt │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAll.tspans.txt │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAllWithPrefix.cspans.txt │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAllWithPrefix.diag.txt │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAllWithPrefix.stree.txt │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAllWithPrefix.tspans.txt │ │ │ ├── UnderstandsPartialRequiredParentTags1.cspans.txt │ │ │ ├── UnderstandsPartialRequiredParentTags1.diag.txt │ │ │ ├── UnderstandsPartialRequiredParentTags1.stree.txt │ │ │ ├── UnderstandsPartialRequiredParentTags1.tspans.txt │ │ │ ├── UnderstandsPartialRequiredParentTags2.cspans.txt │ │ │ ├── UnderstandsPartialRequiredParentTags2.diag.txt │ │ │ ├── UnderstandsPartialRequiredParentTags2.stree.txt │ │ │ ├── UnderstandsPartialRequiredParentTags2.tspans.txt │ │ │ ├── UnderstandsPartialRequiredParentTags3.cspans.txt │ │ │ ├── UnderstandsPartialRequiredParentTags3.diag.txt │ │ │ ├── UnderstandsPartialRequiredParentTags3.stree.txt │ │ │ ├── UnderstandsPartialRequiredParentTags3.tspans.txt │ │ │ ├── UnderstandsPartialRequiredParentTags4.cspans.txt │ │ │ ├── UnderstandsPartialRequiredParentTags4.diag.txt │ │ │ ├── UnderstandsPartialRequiredParentTags4.stree.txt │ │ │ ├── UnderstandsPartialRequiredParentTags4.tspans.txt │ │ │ ├── UnderstandsPartialRequiredParentTags5.cspans.txt │ │ │ ├── UnderstandsPartialRequiredParentTags5.diag.txt │ │ │ ├── UnderstandsPartialRequiredParentTags5.stree.txt │ │ │ ├── UnderstandsPartialRequiredParentTags5.tspans.txt │ │ │ ├── UnderstandsPartialRequiredParentTags6.cspans.txt │ │ │ ├── UnderstandsPartialRequiredParentTags6.diag.txt │ │ │ ├── UnderstandsPartialRequiredParentTags6.stree.txt │ │ │ ├── UnderstandsPartialRequiredParentTags6.tspans.txt │ │ │ ├── UnderstandsTagHelperPrefixAndAllowedChildren.cspans.txt │ │ │ ├── UnderstandsTagHelperPrefixAndAllowedChildren.stree.txt │ │ │ ├── UnderstandsTagHelperPrefixAndAllowedChildren.tspans.txt │ │ │ ├── UnderstandsTagHelperPrefixAndAllowedChildrenAndRequireParent.cspans.txt │ │ │ ├── UnderstandsTagHelperPrefixAndAllowedChildrenAndRequireParent.stree.txt │ │ │ ├── UnderstandsTagHelperPrefixAndAllowedChildrenAndRequireParent.tspans.txt │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags1.cspans.txt │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags1.stree.txt │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags1.tspans.txt │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags2.cspans.txt │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags2.stree.txt │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags2.tspans.txt │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags3.cspans.txt │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags3.stree.txt │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags3.tspans.txt │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags4.cspans.txt │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags4.stree.txt │ │ │ └── UnderstandsTagHelpersInHtmlTypedScriptTags4.tspans.txt │ │ └── WhiteSpaceRewriterTest │ │ │ ├── Moves_Whitespace_Preceeding_ExpressionBlock_To_Parent_Block.cspans.txt │ │ │ └── Moves_Whitespace_Preceeding_ExpressionBlock_To_Parent_Block.stree.txt │ ├── Source │ │ └── BasicMarkup.cshtml │ └── nested-1000.html │ ├── TestRazorProject.cs │ ├── VirtualRazorProjectFileSystemTest.cs │ └── xunit.runner.json ├── Microsoft.CodeAnalysis.Razor ├── src │ ├── AssemblyIdentityEqualityComparer.cs │ ├── BindTagHelperDescriptorProvider.cs │ ├── CodeAnalysisResources.resx │ ├── CompilationTagHelperFeature.cs │ ├── CompilerFeatures.cs │ ├── ComponentDetectionConventions.cs │ ├── ComponentTagHelperDescriptorProvider.cs │ ├── DefaultMetadataReferenceFeature.cs │ ├── DefaultTagHelperDescriptorFactory.cs │ ├── DefaultTagHelperDescriptorProvider.cs │ ├── DefaultTypeNameFeature.cs │ ├── EventHandlerTagHelperDescriptorProvider.cs │ ├── FilePathComparer.cs │ ├── FilePathComparison.cs │ ├── GenericTypeNameRewriter.cs │ ├── GlobalQualifiedTypeNameRewriter.cs │ ├── IMetadataReferenceFeature.cs │ ├── KeyTagHelperDescriptorProvider.cs │ ├── Microsoft.CodeAnalysis.Razor.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PublicAPI.Shipped.txt │ ├── PublicAPI.Unshipped.txt │ ├── RazorDiagnosticFactory.cs │ ├── RazorLanguage.cs │ ├── RazorProjectEngineBuilderExtensions.cs │ ├── RefTagHelperDescriptorProvider.cs │ ├── RequiredAttributeParser.cs │ ├── SourceSpanExtensions.cs │ ├── SplatTagHelperDescriptorProvider.cs │ ├── TagHelperDescriptorProviderContextExtensions.cs │ ├── TagHelperTargetAssemblyExtensions.cs │ ├── TagHelperTypeVisitor.cs │ ├── TagHelperTypes.cs │ ├── TextChangeExtensions.cs │ ├── TextSpanExtensions.cs │ ├── baseline.netcore.json │ └── baseline.netframework.json └── test │ ├── BaseTagHelperDescriptorProviderTest.cs │ ├── BindTagHelperDescriptorProviderTest.cs │ ├── CompilationTagHelperFeatureTest.cs │ ├── ComponentTagHelperDescriptorProviderTest.cs │ ├── DefaultTagHelperDescriptorFactoryTest.cs │ ├── DefaultTagHelperDescriptorProviderTest.cs │ ├── EventHandlerTagHelperDescriptorProviderTest.cs │ ├── GenericTypeNameRewriterTest.cs │ ├── GlobalQualifiedTypeNameRewriterTest.cs │ ├── KeyTagHelperDescriptorProviderTest.cs │ ├── Microsoft.CodeAnalysis.Razor.Test.csproj │ ├── RazorProjectEngineBuilderExtensionsTest.cs │ ├── RefTagHelperDescriptorProviderTest.cs │ ├── SplatTagHelperDescriptorProviderTest.cs │ ├── TagHelperDescriptorFactoryTagHelpers.cs │ ├── TagHelperTypeVisitorTest.cs │ └── xunit.runner.json ├── Microsoft.NET.Sdk.Razor.SourceGenerators.Transport └── Microsoft.NET.Sdk.Razor.SourceGenerators.Transport.csproj ├── Microsoft.NET.Sdk.Razor.SourceGenerators ├── .editorconfig ├── ConfigureRazorCodeGenerationOptions.cs ├── Diagnostics │ ├── DiagnosticIds.cs │ ├── RazorDiagnostics.cs │ └── RazorSourceGeneratorResources.resx ├── IncrementalValueProviderExtensions.cs ├── Microsoft.NET.Sdk.Razor.SourceGenerators.csproj ├── Properties │ └── AssemblyInfo.cs ├── RazorSourceGenerationOptions.cs ├── RazorSourceGenerator.Helpers.cs ├── RazorSourceGenerator.RazorProviders.cs ├── RazorSourceGenerator.TagHelpers.cs ├── RazorSourceGenerator.cs ├── RazorSourceGenerator.razorencconfig ├── RazorSourceGeneratorEventSource.cs ├── SourceGeneratorProjectItem.cs ├── SourceTextRazorSourceDocument.cs ├── SourceTextSourceLineCollection.cs ├── StaticCompilationTagHelperFeature.cs └── StaticTagHelperFeature.cs ├── build.cmd ├── build.sh ├── perf └── Microbenchmarks │ ├── BlazorServerTagHelpers.razor │ ├── CodeGenerationBenchmark.cs │ ├── MSN.cshtml │ ├── Microsoft.AspNetCore.Razor.Microbenchmarks.csproj │ ├── Program.cs │ ├── RazorTagHelperParsingBenchmark.cs │ ├── SyntaxTreeGenerationBenckmark.cs │ └── readme.md ├── shared ├── JsonReaderExtensions.cs ├── RazorDiagnosticJsonConverter.cs ├── TagHelperDescriptorJsonConverter.cs └── taghelpers.json ├── test ├── Directory.Build.props ├── Microsoft.AspNetCore.Razor.Test.Common │ ├── Assert │ │ ├── AssertEx.cs │ │ └── DiffUtil.cs │ ├── Language │ │ ├── CodeGeneration │ │ │ └── TestCodeRenderingContext.cs │ │ ├── IntegrationTests │ │ │ ├── CompilationFailedException.cs │ │ │ ├── CompiledAssembly.cs │ │ │ ├── CompiledCSharpCode.cs │ │ │ ├── InitializeTestFileAttribute.cs │ │ │ ├── IntegrationTestBase.cs │ │ │ ├── IntermediateNodeSerializer.cs │ │ │ ├── IntermediateNodeVerifier.cs │ │ │ ├── IntermediateNodeWriter.cs │ │ │ ├── RazorBaselineIntegrationTestBase.cs │ │ │ ├── RazorDiagnosticSerializer.cs │ │ │ ├── RazorIntegrationTestBase.cs │ │ │ └── SourceMappingsSerializer.cs │ │ ├── Intermediate │ │ │ └── IntermediateNodeAssert.cs │ │ ├── Legacy │ │ │ ├── ClassifiedSpan │ │ │ │ ├── ClassifiedSpanSerializer.cs │ │ │ │ └── ClassifiedSpanWriter.cs │ │ │ ├── IntializeTestFileAttribute.cs │ │ │ ├── ParserTestBase.cs │ │ │ ├── SyntaxNodeSerializer.cs │ │ │ ├── SyntaxNodeWalker.cs │ │ │ ├── SyntaxNodeWriter.cs │ │ │ └── TagHelperSpan │ │ │ │ ├── TagHelperSpanSerializer.cs │ │ │ │ └── TagHelperSpanWriter.cs │ │ ├── RazorEngineBuilderExtensions.cs │ │ ├── RazorProjectEngineBuilderExtensions.cs │ │ ├── RazorProjectEngineTestBase.cs │ │ ├── SyntaxTreeVerifier.cs │ │ ├── TestBoundAttributeDescriptorBuilderExtensions.cs │ │ ├── TestFile.cs │ │ ├── TestProject.cs │ │ ├── TestRazorCodeDocument.cs │ │ ├── TestRazorProjectFileSystem.cs │ │ ├── TestRazorProjectItem.cs │ │ ├── TestRazorSourceDocument.cs │ │ ├── TestRequiredAttributeDescriptorBuilderExtensions.cs │ │ ├── TestTagHelperDescriptorBuilderExtensions.cs │ │ ├── TestTagHelperFeature.cs │ │ └── TestTagMatchingRuleDescriptorBuilderExtensions.cs │ ├── Microsoft.AspNetCore.Razor.Test.Common.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TestCompilation.cs ├── Microsoft.AspNetCore.Razor.Test.ComponentShim │ ├── Microsoft.AspNetCore.Components.Forms.netstandard2.0.cs │ ├── Microsoft.AspNetCore.Components.Web.netstandard2.0.cs │ ├── Microsoft.AspNetCore.Components.netstandard2.0.Manual.cs │ ├── Microsoft.AspNetCore.Components.netstandard2.0.cs │ └── Microsoft.AspNetCore.Razor.Test.ComponentShim.csproj ├── Microsoft.AspNetCore.Razor.Test.MvcShim.ClassLib │ └── Microsoft.AspNetCore.Razor.Test.MvcShim.ClassLib.csproj ├── Microsoft.AspNetCore.Razor.Test.MvcShim.Version1_X │ ├── Microsoft.AspNetCore.Html │ │ ├── IHtmlContent.cs │ │ ├── IHtmlContentBuilder.cs │ │ └── IHtmlContentContainer.cs │ ├── Microsoft.AspNetCore.Mvc.Razor │ │ ├── HelperResult.cs │ │ ├── IRazorPage.cs │ │ ├── RazorInjectAttribute.cs │ │ ├── RazorPage.cs │ │ ├── RazorPageOfT.cs │ │ └── RenderAsyncDelegate.cs │ ├── Microsoft.AspNetCore.Mvc.Rendering │ │ ├── IHtmlHelperOfT.cs │ │ ├── IJsonHelper.cs │ │ └── ViewContext.cs │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures │ │ ├── IModelExpressionProvider.cs │ │ ├── ITempDataDictionary.cs │ │ ├── IViewContextAware.cs │ │ ├── ModelExpression.cs │ │ ├── ViewContextAttribute.cs │ │ ├── ViewDataDictionary.cs │ │ └── ViewDataDictionaryOfT.cs │ ├── Microsoft.AspNetCore.Mvc │ │ ├── IUrlHelper.cs │ │ ├── IViewComponentHelper.cs │ │ └── ViewComponentAttribute.cs │ ├── Microsoft.AspNetCore.Razor.Runtime.TagHelpers │ │ ├── TagHelperExecutionContext.cs │ │ ├── TagHelperRunner.cs │ │ └── TagHelperScopeManager.cs │ ├── Microsoft.AspNetCore.Razor.TagHelpers │ │ ├── HtmlAttributeNameAttribute.cs │ │ ├── HtmlAttributeNotBoundAttribute.cs │ │ ├── HtmlAttributeValueStyle.cs │ │ ├── HtmlTargetElementAttribute.cs │ │ ├── ITagHelper.cs │ │ ├── OutputElementHintAttribute.cs │ │ ├── ReadOnlyTagHelperAttributeList.cs │ │ ├── RestrictChildrenAttribute.cs │ │ ├── TagHelper.cs │ │ ├── TagHelperAttribute.cs │ │ ├── TagHelperAttributeList.cs │ │ ├── TagHelperContent.cs │ │ ├── TagHelperContext.cs │ │ ├── TagHelperOutput.cs │ │ ├── TagMode.cs │ │ └── TagStructure.cs │ ├── Microsoft.AspNetCore.Razor.Test.MvcShim.Version1_X.csproj │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Test.MvcShim.Version2_X │ ├── Microsoft.AspNetCore.Html │ │ ├── HtmlString.cs │ │ ├── IHtmlContent.cs │ │ ├── IHtmlContentBuilder.cs │ │ └── IHtmlContentContainer.cs │ ├── Microsoft.AspNetCore.Mvc.ApplicationParts │ │ ├── CompiledRazorAssemblyApplicationPartFactory.cs │ │ ├── ProvideApplicationPartFactoryAttribute.cs │ │ └── RelatedAssemblyAttribute.cs │ ├── Microsoft.AspNetCore.Mvc.Razor │ │ ├── HelperResult.cs │ │ ├── RazorInjectAttribute.cs │ │ ├── RazorPage.cs │ │ ├── RazorPageBase.cs │ │ ├── RazorPageOfT.cs │ │ ├── RazorViewAttribute.cs │ │ └── RenderAsyncDelegate.cs │ ├── Microsoft.AspNetCore.Mvc.RazorPages │ │ ├── Page.cs │ │ ├── PageContext.cs │ │ ├── PageModel.cs │ │ └── RazorPageAttribute.cs │ ├── Microsoft.AspNetCore.Mvc.Rendering │ │ ├── IHtmlHelperOfT.cs │ │ ├── IJsonHelper.cs │ │ └── ViewContext.cs │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures │ │ ├── IModelExpressionProvider.cs │ │ ├── ITempDataDictionary.cs │ │ ├── IViewContextAware.cs │ │ ├── ModelExpression.cs │ │ ├── ViewContextAttribute.cs │ │ ├── ViewDataDictionary.cs │ │ └── ViewDataDictionaryOfT.cs │ ├── Microsoft.AspNetCore.Mvc │ │ ├── ActionResult.cs │ │ ├── IActionResult.cs │ │ ├── IUrlHelper.cs │ │ ├── IViewComponentHelper.cs │ │ ├── RedirectResult.cs │ │ └── ViewComponentAttribute.cs │ ├── Microsoft.AspNetCore.Razor.Hosting │ │ ├── DefaultRazorCompiledItem.cs │ │ ├── IRazorSourceChecksumMetadata.cs │ │ ├── RazorCompiledItem.cs │ │ ├── RazorCompiledItemAttribute.cs │ │ ├── RazorCompiledItemExtensions.cs │ │ ├── RazorCompiledItemMetadataAttribute.cs │ │ ├── RazorConfigurationNameAttribute.cs │ │ ├── RazorExtensionAssemblyNameAttribute.cs │ │ ├── RazorLanguageVersionAttribute.cs │ │ └── RazorSourceChecksumAttribute.cs │ ├── Microsoft.AspNetCore.Razor.Runtime.TagHelpers │ │ ├── TagHelperExecutionContext.cs │ │ ├── TagHelperRunner.cs │ │ └── TagHelperScopeManager.cs │ ├── Microsoft.AspNetCore.Razor.TagHelpers │ │ ├── HtmlAttributeNameAttribute.cs │ │ ├── HtmlAttributeNotBoundAttribute.cs │ │ ├── HtmlAttributeValueStyle.cs │ │ ├── HtmlTargetElementAttribute.cs │ │ ├── ITagHelper.cs │ │ ├── ITagHelperComponent.cs │ │ ├── OutputElementHintAttribute.cs │ │ ├── ReadOnlyTagHelperAttributeList.cs │ │ ├── RestrictChildrenAttribute.cs │ │ ├── TagHelper.cs │ │ ├── TagHelperAttribute.cs │ │ ├── TagHelperAttributeList.cs │ │ ├── TagHelperComponent.cs │ │ ├── TagHelperContent.cs │ │ ├── TagHelperContext.cs │ │ ├── TagHelperOutput.cs │ │ ├── TagMode.cs │ │ └── TagStructure.cs │ ├── Microsoft.AspNetCore.Razor.Test.MvcShim.Version2_X.csproj │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Test.MvcShim │ ├── Microsoft.AspNetCore.Html │ │ ├── HtmlString.cs │ │ ├── IHtmlContent.cs │ │ ├── IHtmlContentBuilder.cs │ │ └── IHtmlContentContainer.cs │ ├── Microsoft.AspNetCore.Mvc.ApplicationParts │ │ ├── ApplicationPartAttribute.cs │ │ ├── CompiledRazorAssemblyApplicationPartFactory.cs │ │ ├── ProvideApplicationPartFactoryAttribute.cs │ │ └── RelatedAssemblyAttribute.cs │ ├── Microsoft.AspNetCore.Mvc.Razor │ │ ├── HelperResult.cs │ │ ├── RazorInjectAttribute.cs │ │ ├── RazorPage.cs │ │ ├── RazorPageBase.cs │ │ ├── RazorPageOfT.cs │ │ └── RenderAsyncDelegate.cs │ ├── Microsoft.AspNetCore.Mvc.RazorPages │ │ ├── Page.cs │ │ ├── PageContext.cs │ │ └── PageModel.cs │ ├── Microsoft.AspNetCore.Mvc.Rendering │ │ ├── IHtmlHelperOfT.cs │ │ ├── IJsonHelper.cs │ │ └── ViewContext.cs │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures │ │ ├── IModelExpressionProvider.cs │ │ ├── ITempDataDictionary.cs │ │ ├── IViewContextAware.cs │ │ ├── ModelExpression.cs │ │ ├── ViewContextAttribute.cs │ │ ├── ViewDataDictionary.cs │ │ └── ViewDataDictionaryOfT.cs │ ├── Microsoft.AspNetCore.Mvc │ │ ├── ActionResult.cs │ │ ├── IActionResult.cs │ │ ├── IUrlHelper.cs │ │ ├── IViewComponentHelper.cs │ │ ├── RedirectResult.cs │ │ └── ViewComponentAttribute.cs │ ├── Microsoft.AspNetCore.Razor.Hosting │ │ ├── DefaultRazorCompiledItem.cs │ │ ├── IRazorSourceChecksumMetadata.cs │ │ ├── RazorCompiledItem.cs │ │ ├── RazorCompiledItemAttribute.cs │ │ ├── RazorCompiledItemExtensions.cs │ │ ├── RazorCompiledItemMetadataAttribute.cs │ │ ├── RazorConfigurationNameAttribute.cs │ │ ├── RazorExtensionAssemblyNameAttribute.cs │ │ ├── RazorFileIdentifierAttribute.cs │ │ ├── RazorLanguageVersionAttribute.cs │ │ └── RazorSourceChecksumAttribute.cs │ ├── Microsoft.AspNetCore.Razor.Runtime.TagHelpers │ │ ├── TagHelperExecutionContext.cs │ │ ├── TagHelperRunner.cs │ │ └── TagHelperScopeManager.cs │ ├── Microsoft.AspNetCore.Razor.TagHelpers │ │ ├── HtmlAttributeNameAttribute.cs │ │ ├── HtmlAttributeNotBoundAttribute.cs │ │ ├── HtmlAttributeValueStyle.cs │ │ ├── HtmlTargetElementAttribute.cs │ │ ├── ITagHelper.cs │ │ ├── ITagHelperComponent.cs │ │ ├── OutputElementHintAttribute.cs │ │ ├── ReadOnlyTagHelperAttributeList.cs │ │ ├── RestrictChildrenAttribute.cs │ │ ├── TagHelper.cs │ │ ├── TagHelperAttribute.cs │ │ ├── TagHelperAttributeList.cs │ │ ├── TagHelperComponent.cs │ │ ├── TagHelperContent.cs │ │ ├── TagHelperContext.cs │ │ ├── TagHelperOutput.cs │ │ ├── TagMode.cs │ │ └── TagStructure.cs │ ├── Microsoft.AspNetCore.Razor.Test.MvcShim.csproj │ ├── NETCoreTypes.cs │ └── xunit.runner.json └── Microsoft.NET.Sdk.Razor.SourceGenerators.Tests │ ├── .editorconfig │ ├── Microsoft.NET.Sdk.Razor.SourceGenerators.Test.csproj │ ├── RazorDiagnosticTest.cs │ ├── RazorEventListener.cs │ ├── RazorSourceGeneratorTests.cs │ ├── SourceGeneratorProjectItemTest.cs │ ├── SourceTextSourceLineCollectionTest.cs │ └── TestAdditionalText.cs └── tools ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal └── Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal.csproj ├── Microsoft.AspNetCore.Razor.SourceGenerator.Tooling.Internal └── Microsoft.AspNetCore.Razor.SourceGenerator.Tooling.Internal.csproj ├── Microsoft.AspNetCore.Razor.Symbols.Transport └── Microsoft.AspNetCore.Razor.Symbols.Transport.csproj ├── Microsoft.CodeAnalysis.Razor.Tooling.Internal └── Microsoft.CodeAnalysis.Razor.Tooling.Internal.csproj └── RazorSyntaxGenerator ├── AbstractFileWriter.cs ├── Model ├── AbstractNode.cs ├── Comment.cs ├── Field.cs ├── Kind.cs ├── Node.cs ├── PredefinedNode.cs ├── Tree.cs └── TreeType.cs ├── Program.cs ├── README.md ├── RazorSyntaxGenerator.csproj ├── SignatureWriter.cs └── SourceWriter.cs /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/scripts/container-creation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/.devcontainer/scripts/container-creation.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/.gitignore -------------------------------------------------------------------------------- /.globalconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/.globalconfig -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/.vsconfig -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/README.md -------------------------------------------------------------------------------- /activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/activate.ps1 -------------------------------------------------------------------------------- /activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/activate.sh -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /eng/Publishing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/Publishing.props -------------------------------------------------------------------------------- /eng/SourceBuild.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/SourceBuild.props -------------------------------------------------------------------------------- /eng/SourceBuildPrebuiltBaseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/SourceBuildPrebuiltBaseline.xml -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm/sources.list.jessie -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm/sources.list.xenial -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.zesty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm/sources.list.zesty -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm64/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.buster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm64/sources.list.buster -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.stretch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm64/sources.list.stretch -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm64/sources.list.xenial -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.zesty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm64/sources.list.zesty -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm64/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm64/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/arm64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/armel.jessie.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/armel/armel.jessie.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/sources.list.jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/armel/sources.list.jessie -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/armel/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/armel/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen-dotnet.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/armel/tizen/tizen-dotnet.ks -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armv6/sources.list.buster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/armv6/sources.list.buster -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/ppc64le/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/ppc64le/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/s390x/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/s390x/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/cross/x86/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/x86/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/x86/sources.list.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/x86/sources.list.xenial -------------------------------------------------------------------------------- /eng/common/cross/x86/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/x86/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/x86/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/x86/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/x86/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/cross/x86/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/add-build-to-channel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/post-build/add-build-to-channel.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/post-build-utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/post-build/post-build-utils.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/trigger-subscriptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/post-build/trigger-subscriptions.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/templates/job/execute-sdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/job/execute-sdl.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/trigger-subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/post-build/trigger-subscription.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/add-build-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/add-build-to-channel.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/build-reason.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/build-reason.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/execute-codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/execute-codeql.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/execute-sdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/execute-sdl.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/run-on-unix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/run-on-unix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/run-on-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/run-on-windows.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/run-script-ifequalelse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/run-script-ifequalelse.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/telemetry-end.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/telemetry-end.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/telemetry-start.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/steps/telemetry-start.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/templates/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/global.json -------------------------------------------------------------------------------- /razor-compiler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/razor-compiler.sln -------------------------------------------------------------------------------- /restore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/restore.cmd -------------------------------------------------------------------------------- /restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/restore.sh -------------------------------------------------------------------------------- /src/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/.vscode/launch.json -------------------------------------------------------------------------------- /src/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/.vsconfig -------------------------------------------------------------------------------- /src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/Components/App.razor: -------------------------------------------------------------------------------- 1 |

Hello from razor

2 | -------------------------------------------------------------------------------- /src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/Components/App.razor.css: -------------------------------------------------------------------------------- 1 | p { 2 | font-size: bold; 3 | } 4 | -------------------------------------------------------------------------------- /src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/Microsoft.AspNetCore.StaticWebAssets.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestPackages/PackageLibraryDirectDependency/PackageLibraryDirectDependency/wwwroot/css/site.css: -------------------------------------------------------------------------------- 1 | div.fluent { display: inline-block } -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorhosted/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHosted/blazorhosted/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorhosted/blazorhosted.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHosted/blazorhosted/blazorhosted.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorwasm/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHosted/blazorwasm/App.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorwasm/LinkToWebRoot/css/app.css: -------------------------------------------------------------------------------- 1 | .publish { } 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorwasm/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |

Hello, world!

4 | 5 | Welcome to your new app. 6 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorwasm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHosted/blazorwasm/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorwasm/Resources.ja.resx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHosted/blazorwasm/Resources.ja.resx.txt -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorwasm/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHosted/blazorwasm/_Imports.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorwasm/blazorwasm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHosted/blazorwasm/blazorwasm.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorwasm/wwwroot/Fake-License.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorwasm/wwwroot/css/app.css: -------------------------------------------------------------------------------- 1 | .build { } 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorwasm/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHosted/blazorwasm/wwwroot/index.html -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorwasm/wwwroot/serviceworkers/my-prod-service-worker.js: -------------------------------------------------------------------------------- 1 | // This is the production service worker 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/blazorwasm/wwwroot/serviceworkers/my-service-worker.js: -------------------------------------------------------------------------------- 1 | // This is the development service worker 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/razorclasslibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHosted/razorclasslibrary/Class1.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/razorclasslibrary/wwwroot/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHosted/razorclasslibrary/wwwroot/wwwroot/exampleJsInterop.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorhosted/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHostedRID/blazorhosted/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorwasm/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHostedRID/blazorwasm/App.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorwasm/LinkToWebRoot/css/app.css: -------------------------------------------------------------------------------- 1 | .publish { } 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorwasm/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |

Hello, world!

4 | 5 | Welcome to your new app. 6 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorwasm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHostedRID/blazorwasm/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorwasm/Resources.ja.resx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHostedRID/blazorwasm/Resources.ja.resx.txt -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorwasm/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHostedRID/blazorwasm/_Imports.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorwasm/blazorwasm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHostedRID/blazorwasm/blazorwasm.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorwasm/wwwroot/Fake-License.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorwasm/wwwroot/css/app.css: -------------------------------------------------------------------------------- 1 | .build { } 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorwasm/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHostedRID/blazorwasm/wwwroot/index.html -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorwasm/wwwroot/serviceworkers/my-prod-service-worker.js: -------------------------------------------------------------------------------- 1 | // This is the production service worker 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/blazorwasm/wwwroot/serviceworkers/my-service-worker.js: -------------------------------------------------------------------------------- 1 | // This is the development service worker 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/razorclasslibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorHostedRID/razorclasslibrary/Class1.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/razorclasslibrary/wwwroot/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorHostedRID/razorclasslibrary/wwwroot/wwwroot/exampleJsInterop.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorMultiApp/BlazorMultipleApps.FirstClient/App.razor: -------------------------------------------------------------------------------- 1 |

@typeof(BlazorMultipleApps.FirstClient.Program)

-------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorMultiApp/BlazorMultipleApps.FirstClient/wwwroot/css/app.css: -------------------------------------------------------------------------------- 1 | /* First app.css */ -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorMultiApp/BlazorMultipleApps.SecondClient/App.razor: -------------------------------------------------------------------------------- 1 |

@typeof(BlazorMultipleApps.SecondClient.Program)

-------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorMultiApp/BlazorMultipleApps.SecondClient/wwwroot/css/app.css: -------------------------------------------------------------------------------- 1 | /* Second app.css */ -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted50/BlazorWasmHosted50.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted50/BlazorWasmHosted50.sln -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted50/Client/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted50/Client/App.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted50/Client/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted50/Client/Pages/Index.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted50/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted50/Client/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted50/Client/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted50/Client/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted50/Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted50/Client/_Imports.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted50/Client/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted50/Client/wwwroot/css/app.css -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted50/Client/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted50/Client/wwwroot/index.html -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted50/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted50/Server/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted50/Server/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted50/Server/Startup.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted50/Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted50/Server/appsettings.json -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted50/Shared/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted50/Shared/WeatherForecast.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted60/BlazorWasmHosted60.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted60/BlazorWasmHosted60.sln -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted60/Client/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted60/Client/App.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted60/Client/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted60/Client/Pages/Index.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted60/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted60/Client/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted60/Client/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted60/Client/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted60/Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted60/Client/_Imports.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted60/Client/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted60/Client/wwwroot/css/app.css -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted60/Client/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted60/Client/wwwroot/index.html -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted60/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted60/Server/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted60/Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted60/Server/appsettings.json -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmHosted60/Shared/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmHosted60/Shared/WeatherForecast.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmMinimal/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmMinimal/App.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmMinimal/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |

Hello, world!

4 | 5 | Welcome to your new app. 6 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmMinimal/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmMinimal/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmMinimal/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmMinimal/_Imports.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmMinimal/blazorwasm-minimal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmMinimal/blazorwasm-minimal.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmMinimal/wwwroot/css/app.css: -------------------------------------------------------------------------------- 1 | .build { } 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmMinimal/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmMinimal/wwwroot/index.html -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/LinkBaseToWebRoot/js/LinkedScript.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/App.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/LinkToWebRoot/css/app.css: -------------------------------------------------------------------------------- 1 | .publish { } 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |

Hello, world!

4 | 5 | Welcome to your new app. 6 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/_Imports.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/css/app.css: -------------------------------------------------------------------------------- 1 | .publish { } 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/wwwroot/Fake-License.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/wwwroot/css/app.css: -------------------------------------------------------------------------------- 1 | .build { } 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/wwwroot/serviceworkers/my-prod-service-worker.js: -------------------------------------------------------------------------------- 1 | // This is the production service worker 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/blazorwasm/wwwroot/serviceworkers/my-service-worker.js: -------------------------------------------------------------------------------- 1 | // This is the development service worker 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/razorclasslibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/BlazorWasmWithLibrary/razorclasslibrary/Class1.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/razorclasslibrary/wwwroot/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/BlazorWasmWithLibrary/razorclasslibrary/wwwroot/wwwroot/exampleJsInterop.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithP2PReference/AnotherClassLib/wwwroot/css/site.css: -------------------------------------------------------------------------------- 1 | div.fluent { display: inline-block } -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithP2PReference/ClassLibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorAppWithP2PReference/ClassLibrary/Class1.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithP2PReference/ClassLibrary/Components/App.razor: -------------------------------------------------------------------------------- 1 |

Hello from razor

2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithP2PReference/ClassLibrary/Components/App.razor.css: -------------------------------------------------------------------------------- 1 | p { 2 | font-size: bold; 3 | } 4 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithP2PReference/ClassLibrary/wwwroot/js/project-transitive-dep.v4.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithPackageAndP2PReference/AnotherClassLib/wwwroot/css/site.css: -------------------------------------------------------------------------------- 1 | div.fluent { display: inline-block } -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithPackageAndP2PReference/AppWithPackageAndP2PReference/TestPackages/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithPackageAndP2PReference/ClassLibrary/Components/App.razor: -------------------------------------------------------------------------------- 1 |

Hello from razor

2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithPackageAndP2PReference/ClassLibrary/Components/App.razor.css: -------------------------------------------------------------------------------- 1 | p { 2 | font-size: bold; 3 | } 4 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithPackageAndP2PReference/ClassLibrary/wwwroot/js/project-transitive-dep.v4.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithPackageAndP2PReference/PackageLibraryDirectDependency/Components/App.razor: -------------------------------------------------------------------------------- 1 |

Hello from razor

2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithPackageAndP2PReference/PackageLibraryDirectDependency/Components/App.razor.css: -------------------------------------------------------------------------------- 1 | p { 2 | font-size: bold; 3 | } 4 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorAppWithPackageAndP2PReference/PackageLibraryDirectDependency/wwwroot/css/site.css: -------------------------------------------------------------------------------- 1 | div.fluent { display: inline-block } -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorClassLibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorClassLibrary/Class1.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorClassLibrary/ClassLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorClassLibrary/ClassLibrary.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorClassLibrary/Components/App.razor: -------------------------------------------------------------------------------- 1 |

Hello from razor

2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorClassLibrary/Components/App.razor.css: -------------------------------------------------------------------------------- 1 | p { 2 | font-size: bold; 3 | } 4 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorClassLibrary/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorClassLibrary/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorClassLibrary/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorClassLibrary/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorClassLibrary/wwwroot/js/project-transitive-dep.v4.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentApp/ComponentApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorComponentApp/ComponentApp.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentApp/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorComponentApp/Components/App.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentApp/Components/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorComponentApp/Components/Pages/Counter.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentApp/Components/Pages/Counter.razor.css: -------------------------------------------------------------------------------- 1 | button { 2 | font-size: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentApp/Components/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |

Hello, world!

4 | 5 | Welcome to your new app. -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentApp/Components/Pages/Index.razor.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | font-weight: bold; 3 | } 4 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentApp/Components/Pages/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorComponentApp/Components/Pages/_Imports.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentApp/Components/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorComponentApp/Components/Shared/NavMenu.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentApp/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorComponentApp/Components/_Imports.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorComponentApp/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentApp/Services/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorComponentApp/Services/WeatherForecast.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentLibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorComponentLibrary/Class1.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentLibrary/ComponentLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorComponentLibrary/ComponentLibrary.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentLibrary/GenericComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorComponentLibrary/GenericComponent.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorComponentLibrary/MyComponent.razor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/Components/Counter.razor: -------------------------------------------------------------------------------- 1 |
This file should produce a component
2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/Components/Counter.razor.css: -------------------------------------------------------------------------------- 1 | div { 2 | font-size: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorMvcWithComponents/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/MvcWithComponents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorMvcWithComponents/MvcWithComponents.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorMvcWithComponents/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/SimpleTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorMvcWithComponents/SimpleTagHelper.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorMvcWithComponents/Test.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/TestComponent.razor: -------------------------------------------------------------------------------- 1 | Hello from component -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/Views/Home/FileName.cshtml: -------------------------------------------------------------------------------- 1 | @page "/filename" 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 |

Hello world!

6 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/Views/Home/Index.cshtml.css: -------------------------------------------------------------------------------- 1 | p { 2 | font-size: 48px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/Views/Shared/NavMenu.razor: -------------------------------------------------------------------------------- 1 | @Test.Foo @* Used in a test. Don't remove *@ 2 | 3 | NavMenu content 4 | 5 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorMvcWithComponents/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorMvcWithComponents/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorMvcWithComponents/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/SimpleMvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/SimpleMvc.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/SimpleTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/SimpleTagHelper.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Views/Home/#F{}i+l!e.cshtml: -------------------------------------------------------------------------------- 1 |

Just a file with a special character in the name!

-------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/Views/Home/About.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Views/Home/About.cshtml.css: -------------------------------------------------------------------------------- 1 | h2 { 2 | font-size: 24px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Views/Home/Contact.cshtml.css: -------------------------------------------------------------------------------- 1 | a { 2 | font-size: 36px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Views/Home/Index.cshtml.css: -------------------------------------------------------------------------------- 1 | p { 2 | font-size: 48px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/appsettings.Development.json -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/appsettings.json -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc/wwwroot/js/SimpleMvc.js: -------------------------------------------------------------------------------- 1 | // This is a test file 2 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21/SimpleMvc21.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21/SimpleMvc21.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21/SimpleTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21/SimpleTagHelper.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21/Views/Home/About.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21NetFx/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21NetFx/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21NetFx/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21NetFx/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21NetFx/SimpleMvc21NetFx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21NetFx/SimpleMvc21NetFx.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21NetFx/SimpleTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21NetFx/SimpleTagHelper.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21NetFx/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21NetFx/Views/Home/About.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21NetFx/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21NetFx/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21NetFx/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21NetFx/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21NetFx/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21NetFx/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc21NetFx/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc21NetFx/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc22/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc22/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc22/SimpleMvc22.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc22/SimpleMvc22.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc22/SimpleTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc22/SimpleTagHelper.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc22/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc22/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc22/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc22/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc22/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc22/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc22/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc22/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc31/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc31/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc31/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc31/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc31/SimpleMvc31.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc31/SimpleMvc31.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc31/SimpleTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc31/SimpleTagHelper.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc31/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc31/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc31/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc31/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc31/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc31/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc31/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc31/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc50/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc50/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc50/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc50/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc50/SimpleMvc50.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc50/SimpleMvc50.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc50/SimpleTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc50/SimpleTagHelper.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc50/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc50/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc50/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc50/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc50/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc50/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimpleMvc50/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimpleMvc50/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimplePages/LinkedDir/LinkedErrorFile.cshtml: -------------------------------------------------------------------------------- 1 | @( -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimplePages/LinkedDir/LinkedFile.cshtml: -------------------------------------------------------------------------------- 1 | @DateTime.UtcNow -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimplePages/LinkedDir/LinkedFile2.cshtml: -------------------------------------------------------------------------------- 1 | @DateTime.UtcNow -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimplePages/LinkedDir/LinkedFile3.cshtml: -------------------------------------------------------------------------------- 1 | @DateTime.UtcNow -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimplePages/SimplePages/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimplePages/SimplePages/Pages/About.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimplePages/SimplePages/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimplePages/SimplePages/Pages/Contact.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimplePages/SimplePages/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimplePages/SimplePages/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimplePages/SimplePages/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimplePages/SimplePages/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimplePages/SimplePages/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimplePages/SimplePages/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/RazorSimplePages/SimplePages/SimplePages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/RazorSimplePages/SimplePages/SimplePages.csproj -------------------------------------------------------------------------------- /src/Assets/TestProjects/Razorblazor31/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/Razorblazor31/App.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/Razorblazor31/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |

Hello, world!

4 | 5 | Welcome to your new app. 6 | 7 | -------------------------------------------------------------------------------- /src/Assets/TestProjects/Razorblazor31/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/Razorblazor31/Pages/_Host.cshtml -------------------------------------------------------------------------------- /src/Assets/TestProjects/Razorblazor31/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/Razorblazor31/Program.cs -------------------------------------------------------------------------------- /src/Assets/TestProjects/Razorblazor31/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/Razorblazor31/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/Razorblazor31/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/Razorblazor31/Shared/NavMenu.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/Razorblazor31/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/Razorblazor31/_Imports.razor -------------------------------------------------------------------------------- /src/Assets/TestProjects/Razorblazor31/blazor31.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Assets/TestProjects/Razorblazor31/blazor31.csproj -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/test/MvcShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/test/MvcShim.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InheritsWithViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @model MyModel 2 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Inject.cshtml: -------------------------------------------------------------------------------- 1 | @inject MyApp MyPropertyName 2 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | @namespace Test. -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Model.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Collections.IEnumerable 2 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/test/MvcShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/test/MvcShim.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InheritsWithViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model MyModel 3 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Inject.cshtml: -------------------------------------------------------------------------------- 1 | @inject MyApp MyPropertyName 2 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | @namespace Test. -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/MalformedPageDirective_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Model.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Collections.IEnumerable 2 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/RazorPageWithNoLeadingPageDirective.cshtml: -------------------------------------------------------------------------------- 1 |
Some text here.
2 | @page 3 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/RazorPageWithNoLeadingPageDirective_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/ExtensionInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/ExtensionInitializer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/InjectDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/InjectDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/ModelDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/ModelDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/ModelExpressionPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/ModelExpressionPass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/PageDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/PageDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/RazorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/RazorExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/ViewComponentTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/ViewComponentTypes.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/InjectDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/InjectDirectiveTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/ModelDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/ModelDirectiveTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/MvcShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/MvcShim.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/PageDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/PageDirectiveTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AttributeDirectiveWithViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @attribute [Serializable] -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InheritsWithViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model MyModel 3 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Inject.cshtml: -------------------------------------------------------------------------------- 1 | @inject MyApp MyPropertyName 2 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | @namespace Test. -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/MalformedPageDirective_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Model.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Collections.IEnumerable 2 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/RazorPageWithNoLeadingPageDirective.cshtml: -------------------------------------------------------------------------------- 1 |
Some text here.
2 | @page 3 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/RazorPageWithNoLeadingPageDirective_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/AllowedChildTagDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/AllowedChildTagDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/AssemblyExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/AssemblyExtension.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/AttributeStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/AttributeStructure.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/BoundAttributeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/BoundAttributeDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/CSharpIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/CSharpIdentifier.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Checksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Checksum.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/ClassifiedSpanVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/ClassifiedSpanVisitor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/CodeGeneration/CodeTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/CodeGeneration/CodeTarget.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/CodeGeneration/CodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/CodeGeneration/CodeWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/CodeGeneration/LinePragma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/CodeGeneration/LinePragma.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/ComparerUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/ComparerUtilities.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/ComponentResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/ComponentResources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Components/ComponentsApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Components/ComponentsApi.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Components/ScopeStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Components/ScopeStack.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Components/TypeNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Components/TypeNameHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorCSharpDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorCSharpDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorCodeDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorCodeDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorDiagnostic.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorEngineBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorHtmlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorHtmlDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorParserOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorParserOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorParsingPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorParsingPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorProjectEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorProjectEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorProjectItem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorSyntaxTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DefaultRazorSyntaxTree.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DefaultTagHelperDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DefaultTagHelperDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DirectiveDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DirectiveDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DirectiveKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DirectiveKind.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DirectiveTokenDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DirectiveTokenDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DirectiveTokenEditHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DirectiveTokenEditHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DirectiveTokenKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DirectiveTokenKind.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DirectiveUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DirectiveUsage.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/DocumentClassifierPassBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/DocumentClassifierPassBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/EmptyProjectFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/EmptyProjectFileSystem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/FileKindDirectiveFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/FileKindDirectiveFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/FileKinds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/FileKinds.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/HashCodeCombiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/HashCodeCombiner.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/HtmlConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/HtmlConventions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/HtmlNodeOptimizationPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/HtmlNodeOptimizationPass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IImportProjectFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IImportProjectFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IRazorCSharpLoweringPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IRazorCSharpLoweringPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IRazorDirectiveFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IRazorDirectiveFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IRazorEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IRazorEngineBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IRazorEngineFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IRazorEngineFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IRazorEnginePhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IRazorEnginePhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IRazorFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IRazorFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IRazorOptimizationPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IRazorOptimizationPass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IRazorOptimizationPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IRazorOptimizationPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IRazorParserOptionsFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IRazorParserOptionsFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IRazorParsingPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IRazorParsingPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IRazorSyntaxTreePass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IRazorSyntaxTreePass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/IRazorSyntaxTreePhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/IRazorSyntaxTreePhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/ITagHelperFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/ITagHelperFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Intermediate/TokenKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Intermediate/TokenKind.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/ItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/ItemCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/LargeTextSourceDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/LargeTextSourceDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/BalancingModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/BalancingModes.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/CSharpCodeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/CSharpCodeParser.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/CSharpKeyword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/CSharpKeyword.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/CSharpTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/CSharpTokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/DisposableAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/DisposableAction.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/EditResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/EditResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ErrorSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ErrorSink.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/HtmlMarkupParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/HtmlMarkupParser.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/HtmlTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/HtmlTokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ITextBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ITextBuffer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ITextDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ITextDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ITokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ITokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/KnownTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/KnownTokenType.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/LocationTagged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/LocationTagged.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ParserBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ParserBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ParserContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ParserContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ParserHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ParserHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ParserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/ParserState.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/RazorParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/RazorParser.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/SpanContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/SpanContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/SpanEditHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/SpanEditHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/SpanKindInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/SpanKindInternal.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/SyntaxConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/SyntaxConstants.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/Tokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/Tokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Legacy/TokenizerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Legacy/TokenizerView.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/NotFoundProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/NotFoundProjectItem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorCSharpDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorCSharpDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorCodeDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorCodeDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorDiagnostic.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorDiagnosticFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorDiagnosticFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorDiagnosticSeverity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorDiagnosticSeverity.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorEngineFeatureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorEngineFeatureBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorEnginePhaseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorEnginePhaseBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorExtension.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorHtmlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorHtmlDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorHtmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorHtmlWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorLanguageVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorLanguageVersion.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorParserFeatureFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorParserFeatureFlags.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorParserOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorParserOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorProject.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorProjectEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorProjectEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorProjectFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorProjectFileSystem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorProjectItem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorSourceDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorSourceDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/RazorSyntaxTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/RazorSyntaxTree.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/SourceChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/SourceChange.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/SourceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/SourceLocation.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/SourceMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/SourceMapping.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/SourceSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/SourceSpan.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/StreamSourceDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/StreamSourceDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/StringSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/StringSegment.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/StringSourceDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/StringSourceDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/StringTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/StringTokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/ArrayElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/ArrayElement.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/ChildSyntaxList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/ChildSyntaxList.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/GreenNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/GreenNode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/NodeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/NodeFlags.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/ObjectPool.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/RazorSyntaxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/RazorSyntaxNode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/StackGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/StackGuard.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/Syntax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/Syntax.xml -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxAnnotation.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxKind.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxList.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxListOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxListOfT.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxNode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxReplacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxReplacer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxRewriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxSerializer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxToken.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxTrivia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxTrivia.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxTriviaList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxTriviaList.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxUtilities.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxVisitor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/SyntaxWalker.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Syntax/TextSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Syntax/TextSpan.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/TagHelperAttributeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/TagHelperAttributeInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/TagHelperBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/TagHelperBinder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/TagHelperBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/TagHelperBinding.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/TagHelperConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/TagHelperConventions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/TagHelperDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/TagHelperDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/TagHelperInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/TagHelperInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/TagHelperMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/TagHelperMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/TagHelperSpanVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/TagHelperSpanVisitor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/TagMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/TagMode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/TagStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/TagStructure.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/TypeNameFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/TypeNameFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/TypeNameRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/TypeNameRewriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/Util/NullableAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/Util/NullableAttributes.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/src/baseline.netframework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/src/baseline.netframework.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/Components/NodeAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/Components/NodeAssert.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/DefaultRazorEngineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/DefaultRazorEngineTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/HashCodeCombinerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/HashCodeCombinerTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/HtmlConventionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/HtmlConventionsTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/Legacy/BaselineWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/Legacy/BaselineWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/Legacy/CSharpBlockTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/Legacy/CSharpBlockTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/Legacy/CSharpErrorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/Legacy/CSharpErrorTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/Legacy/HtmlBlockTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/Legacy/HtmlBlockTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/Legacy/HtmlErrorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/Legacy/HtmlErrorTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/Legacy/HtmlTagsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/Legacy/HtmlTagsTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/Legacy/RazorParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/Legacy/RazorParserTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/RazorCodeDocumentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/RazorCodeDocumentTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/RazorDiagnosticTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/RazorDiagnosticTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/RazorEngineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/RazorEngineTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/RazorProjectEngineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/RazorProjectEngineTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/RazorProjectItemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/RazorProjectItemTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/RazorProjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/RazorProjectTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/RazorSyntaxTreeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/RazorSyntaxTreeTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/SourceChangeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/SourceChangeTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/SourceLocationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/SourceLocationTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/SourceSpanTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/SourceSpanTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/StringSegmentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/StringSegmentTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/StringTokenizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/StringTokenizerTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TagHelperBinderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/razor-compiler/HEAD/src/Microsoft.AspNetCore.Razor.Language/test/TagHelperBinderTest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/DefaultRazorProjectFileSystem/Home.cshtml: -------------------------------------------------------------------------------- 1 | home-content -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/DefaultRazorProjectFileSystem/Views/About/About.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/DefaultRazorProjectFileSystem/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/DefaultRazorProjectFileSystem/Views/Home/Index.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/DefaultRazorProjectFileSystem/Views/Home/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/DefaultRazorProjectFileSystem/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/DefaultRazorProjectFileSystem/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/BasicIntegrationTest/CustomDirective.cshtml: -------------------------------------------------------------------------------- 1 | @test -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/BasicIntegrationTest/Empty.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/BasicIntegrationTest/HelloWorld.cshtml: -------------------------------------------------------------------------------- 1 | Hello, World! -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AddTagHelperDirective.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper "*, TestAssembly" 2 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/CodeBlockAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | @{ -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/CodeBlockAtEOF_DesignTime.codegen.html: -------------------------------------------------------------------------------- 1 | ~~ -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyCodeBlock.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @{} -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyCodeBlock_DesignTime.codegen.html: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | ~~~ -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyExplicitExpression.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @() -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyExplicitExpression_DesignTime.codegen.html: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | ~~~ -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyImplicitExpression.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @! -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyImplicitExpressionInCode.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | @ 3 | } -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyImplicitExpressionInCode_DesignTime.codegen.html: -------------------------------------------------------------------------------- 1 | ~~ 2 | ~ 3 | ~ -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyImplicitExpression_DesignTime.codegen.html: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | ~! -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ExplicitExpression.cshtml: -------------------------------------------------------------------------------- 1 | 1 + 1 = @(1+1) -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ExplicitExpressionAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @( -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ExplicitExpressionAtEOF_DesignTime.codegen.html: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | ~~ -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ExplicitExpressionWithMarkup.cshtml: -------------------------------------------------------------------------------- 1 |
@(@
-------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HiddenSpansInCode.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | @@Da 3 | } -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HtmlCommentWithQuote_Double.cshtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HtmlCommentWithQuote_Double_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HtmlCommentWithQuote_Single.cshtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HtmlCommentWithQuote_Single_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ImplicitExpressionAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @ -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ImplicitExpressionAtEOF_DesignTime.codegen.html: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | ~ -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/IncompleteTagHelper.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper "*, TestAssembly" 2 | 3 |