├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .vsts-pipelines └── builds │ ├── ci-internal.yml │ └── ci-public.yml ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.txt ├── NuGet.config ├── NuGetPackageVerifier.json ├── README.md ├── Razor.sln ├── benchmarks └── Microsoft.AspNetCore.Razor.Performance │ ├── AssemblyInfo.cs │ ├── CodeGenerationBenchmark.cs │ ├── MSN.cshtml │ ├── Microsoft.AspNetCore.Razor.Performance.csproj │ ├── ProjectSystem │ ├── BackgroundCodeGenerationBenchmark.cs │ ├── ProjectLoadBenchmark.cs │ └── ProjectSnapshotManagerBenchmarkBase.cs │ ├── SyntaxTreeGenerationBenckmark.cs │ ├── TagHelperSerializationBenchmark.cs │ ├── readme.md │ └── taghelpers.json ├── build.cmd ├── build.sh ├── build ├── Key.snk ├── MPack.targets ├── VSIX.targets ├── buildpipeline │ ├── linux.groovy │ ├── osx.groovy │ ├── pipeline.groovy │ └── windows.groovy ├── dependencies.props ├── repo.props ├── repo.targets └── sources.props ├── korebuild-lock.txt ├── korebuild.json ├── run.cmd ├── run.ps1 ├── run.sh ├── shared └── Microsoft.AspNetCore.Razor.TagHelpers.Testing.Sources │ └── CaseSensitiveBoundAttributeComparer.cs ├── src ├── Directory.Build.props ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X │ ├── 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 │ ├── MvcRazorTemplateEngine.cs │ ├── MvcViewDocumentClassifierPass.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── ViewComponentResources.Designer.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 ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X │ ├── 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 │ │ ├── Resources.Designer.cs │ │ └── ViewComponentResources.Designer.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 ├── Microsoft.AspNetCore.Mvc.Razor.Extensions │ ├── AssemblyAttributeInjectionPass.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 │ ├── MvcRazorTemplateEngine.cs │ ├── MvcViewDocumentClassifierPass.cs │ ├── NamespaceDirective.cs │ ├── PageDirective.cs │ ├── PagesPropertyInjectionPass.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── ViewComponentResources.Designer.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 │ ├── breakingchanges.netcore.json │ └── breakingchanges.netframework.json ├── Microsoft.AspNetCore.Razor.Language │ ├── AllowedChildTagDescriptor.cs │ ├── AllowedChildTagDescriptorBuilder.cs │ ├── AllowedChildTagDescriptorComparer.cs │ ├── AssemblyExtension.cs │ ├── AttributeStructure.cs │ ├── BoundAttributeDescriptor.cs │ ├── BoundAttributeDescriptorBuilder.cs │ ├── BoundAttributeDescriptorBuilderExtensions.cs │ ├── BoundAttributeDescriptorComparer.cs │ ├── BoundAttributeDescriptorExtensions.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 │ │ ├── LiteralRuntimeNodeWriter.cs │ │ ├── RuntimeNodeWriter.cs │ │ ├── TagHelperHtmlAttributeRuntimeNodeWriter.cs │ │ └── TagHelperRenderingContext.cs │ ├── Components │ │ ├── CodeGenerationConstants.cs │ │ ├── ComponentDocumentClassifierPass.cs │ │ └── ComponentExtensions.cs │ ├── DefaultAllowedChildTagDescriptor.cs │ ├── DefaultAllowedChildTagDescriptorBuilder.cs │ ├── DefaultBoundAttributeDescriptor.cs │ ├── DefaultBoundAttributeDescriptorBuilder.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 │ ├── 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 │ │ ├── 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 │ │ ├── ISectionTargetExtension.cs │ │ ├── ITemplateTargetExtension.cs │ │ ├── InheritsDirective.cs │ │ ├── InheritsDirectivePass.cs │ │ ├── MetadataAttributePass.cs │ │ ├── MetadataAttributeTargetExtension.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 │ ├── 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 │ │ ├── ClassDeclarationIntermediateNode.cs │ │ ├── CommonAnnotations.cs │ │ ├── DebuggerDisplayFormatter.cs │ │ ├── DefaultRazorIntermediateNodeBuilder.cs │ │ ├── DirectiveIntermediateNode.cs │ │ ├── DirectiveTokenIntermediateNode.cs │ │ ├── DocumentIntermediateNode.cs │ │ ├── DocumentIntermediateNodeExtensions.cs │ │ ├── ExtensionIntermediateNode.cs │ │ ├── FieldDeclarationIntermediateNode.cs │ │ ├── HtmlAttributeIntermediateNode.cs │ │ ├── HtmlAttributeValueIntermediateNode.cs │ │ ├── HtmlContentIntermediateNode.cs │ │ ├── IExtensionIntermediateNodeVisitor.cs │ │ ├── InputDocumentKind.cs │ │ ├── IntermediateNode.cs │ │ ├── IntermediateNodeBuilder.cs │ │ ├── IntermediateNodeCollection.cs │ │ ├── IntermediateNodeExtensions.cs │ │ ├── IntermediateNodeFormatter.cs │ │ ├── IntermediateNodeFormatterBase.cs │ │ ├── IntermediateNodeReference.cs │ │ ├── IntermediateNodeVisitor.cs │ │ ├── IntermediateNodeWalker.cs │ │ ├── IntermediateToken.cs │ │ ├── MalformedDirectiveIntermediateNode.cs │ │ ├── MemberDeclarationIntermediateNode.cs │ │ ├── MethodDeclarationIntermediateNode.cs │ │ ├── MethodParameter.cs │ │ ├── NamespaceDeclarationIntermediateNode.cs │ │ ├── PropertyDeclarationIntermediateNode.cs │ │ ├── TagHelperBodyIntermediateNode.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 │ │ ├── LineTrackingStringBuffer.cs │ │ ├── LiteralAttributeChunkGenerator.cs │ │ ├── LocationTagged.cs │ │ ├── MarkupChunkGenerator.cs │ │ ├── ParserBase.cs │ │ ├── ParserContext.cs │ │ ├── ParserHelpers.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 │ │ └── Resources.Designer.cs │ ├── ProvideRazorExtensionInitializerAttribute.cs │ ├── 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 │ ├── 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 │ ├── RazorTemplateEngine.cs │ ├── RazorTemplateEngineOptions.cs │ ├── RequiredAttributeDescriptor.cs │ ├── RequiredAttributeDescriptorBuilder.cs │ ├── RequiredAttributeDescriptorComparer.cs │ ├── Resources.resx │ ├── SourceChange.cs │ ├── SourceLocation.cs │ ├── SourceMapping.cs │ ├── SourceSpan.cs │ ├── StreamSourceDocument.cs │ ├── StringSourceDocument.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 │ │ │ ├── RazorDirectiveSyntax.cs │ │ │ ├── RazorSyntaxNode.cs │ │ │ ├── SyntaxFactory.cs │ │ │ ├── SyntaxList.cs │ │ │ ├── SyntaxListBuilder.cs │ │ │ ├── SyntaxListBuilderOfT.cs │ │ │ ├── SyntaxListOfT.cs │ │ │ ├── SyntaxListPool.cs │ │ │ ├── SyntaxRewriter.cs │ │ │ ├── SyntaxToken.cs │ │ │ ├── SyntaxTrivia.cs │ │ │ └── SyntaxVisitor.cs │ │ ├── MarkupElementRewriter.cs │ │ ├── MarkupMinimizedTagHelperAttributeSyntax.cs │ │ ├── MarkupTagHelperAttributeSyntax.cs │ │ ├── MarkupTagHelperElementSyntax.cs │ │ ├── NodeFlags.cs │ │ ├── ObjectPool.cs │ │ ├── RazorDirectiveSyntax.cs │ │ ├── RazorSyntaxNode.cs │ │ ├── SpecializedCollections.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 │ │ ├── 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 │ ├── VirtualRazorProjectFileSystem.cs │ ├── baseline.netcore.json │ ├── baseline.netframework.json │ ├── breakingchanges.netcore.json │ └── breakingchanges.netframework.json ├── Microsoft.AspNetCore.Razor.Runtime │ ├── Hosting │ │ ├── DefaultRazorCompiledItem.cs │ │ ├── IRazorSourceChecksumMetadata.cs │ │ ├── RazorCompiledItem.cs │ │ ├── RazorCompiledItemAttribute.cs │ │ ├── RazorCompiledItemExtensions.cs │ │ ├── RazorCompiledItemLoader.cs │ │ ├── RazorCompiledItemMetadataAttribute.cs │ │ ├── RazorConfigurationNameAttribute.cs │ │ ├── RazorExtensionAssemblyNameAttribute.cs │ │ ├── RazorLanguageVersionAttribute.cs │ │ └── RazorSourceChecksumAttribute.cs │ ├── Microsoft.AspNetCore.Razor.Runtime.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Resources.resx │ ├── Runtime │ │ └── TagHelpers │ │ │ ├── TagHelperExecutionContext.cs │ │ │ ├── TagHelperRunner.cs │ │ │ └── TagHelperScopeManager.cs │ └── baseline.netcore.json ├── Microsoft.AspNetCore.Razor.Tools │ ├── Application.cs │ ├── CachingMetadataReference.cs │ ├── Client.cs │ ├── CommandBase.cs │ ├── CompilerHost.cs │ ├── CompositeRazorProjectFileSystem.cs │ ├── ConcurrentLruCache.cs │ ├── Connection.cs │ ├── ConnectionHost.cs │ ├── ConnectionResult.cs │ ├── DebugMode.cs │ ├── DefaultExtensionAssemblyLoader.cs │ ├── DefaultExtensionDependencyChecker.cs │ ├── DefaultRequestDispatcher.cs │ ├── DiscoverCommand.cs │ ├── EventBus.cs │ ├── ExtensionAssemblyLoader.cs │ ├── ExtensionDependencyChecker.cs │ ├── GenerateCommand.cs │ ├── Memory.cs │ ├── MetadataCache.cs │ ├── MetadataReaderExtensions.cs │ ├── Microsoft.AspNetCore.Razor.Tools.csproj │ ├── MutexName.cs │ ├── PipeName.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RequestDispatcher.cs │ ├── ServerCommand.cs │ ├── ServerProtocol │ │ ├── CompletedServerResponse.cs │ │ ├── MismatchedVersionServerResponse.cs │ │ ├── NativeMethods.cs │ │ ├── RejectedServerResponse.cs │ │ ├── RequestArgument.cs │ │ ├── ServerConnection.cs │ │ ├── ServerLogger.cs │ │ ├── ServerPaths.cs │ │ ├── ServerProtocol.cs │ │ ├── ServerRequest.cs │ │ ├── ServerResponse.cs │ │ └── ShutdownServerResponse.cs │ ├── ShadowCopyManager.cs │ └── ShutdownCommand.cs ├── Microsoft.AspNetCore.Razor │ ├── Microsoft.AspNetCore.Razor.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TagHelpers │ │ ├── DefaultTagHelperContent.cs │ │ ├── HtmlAttributeNameAttribute.cs │ │ ├── HtmlAttributeNotBoundAttribute.cs │ │ ├── HtmlAttributeValueStyle.cs │ │ ├── HtmlTargetElementAttribute.cs │ │ ├── ITagHelper.cs │ │ ├── ITagHelperComponent.cs │ │ ├── NullHtmlEncoder.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 │ └── baseline.netcore.json ├── Microsoft.CodeAnalysis.Razor.Workspaces │ ├── DefaultDocumentServiceProviderFactory.cs │ ├── DefaultErrorReporter.cs │ ├── DefaultErrorReporterFactory.cs │ ├── DefaultProjectSnapshotProjectEngineFactory.cs │ ├── DefaultProjectSnapshotProjectEngineFactoryFactory.cs │ ├── DefaultRazorCompletionFactsService.cs │ ├── DocumentKey.cs │ ├── DocumentServiceProviderFactory.cs │ ├── Editor │ │ ├── EditorSettings.cs │ │ ├── EditorSettingsChangedEventArgs.cs │ │ └── WorkspaceEditorSettings.cs │ ├── ErrorReporter.cs │ ├── ExportCustomProjectEngineFactoryAttribute.cs │ ├── FallbackProjectEngineFactory.cs │ ├── ForegroundDispatcher.cs │ ├── Host │ │ ├── IDocumentExcerptService.cs │ │ ├── IDocumentOperationService.cs │ │ ├── IDocumentService.cs │ │ ├── IDocumentServiceProvider.cs │ │ └── ISpanMappingService.cs │ ├── ICustomProjectEngineFactoryMetadata.cs │ ├── IFallbackProjectEngineFactory.cs │ ├── IProjectEngineFactory.cs │ ├── Microsoft.CodeAnalysis.Razor.Workspaces.csproj │ ├── ProjectSnapshotProjectEngineFactory.cs │ ├── ProjectSystem │ │ ├── DefaultDocumentSnapshot.cs │ │ ├── DefaultImportDocumentSnapshot.cs │ │ ├── DefaultProjectSnapshot.cs │ │ ├── DefaultProjectSnapshotManager.cs │ │ ├── DefaultProjectSnapshotManagerFactory.cs │ │ ├── DocumentSnapshot.cs │ │ ├── DocumentState.cs │ │ ├── EmptyTextLoader.cs │ │ ├── EphemeralProjectSnapshot.cs │ │ ├── FallbackRazorConfiguration.cs │ │ ├── FallbackRazorExtension.cs │ │ ├── GeneratedCodeContainer.cs │ │ ├── GeneratedOutputTextLoader.cs │ │ ├── HostDocument.cs │ │ ├── HostProject.cs │ │ ├── LiveShareProjectSnapshotBase.cs │ │ ├── ProjectChangeEventArgs.cs │ │ ├── ProjectChangeKind.cs │ │ ├── ProjectDifference.cs │ │ ├── ProjectSnapshot.cs │ │ ├── ProjectSnapshotChangeTrigger.cs │ │ ├── ProjectSnapshotManager.cs │ │ ├── ProjectSnapshotManagerBase.cs │ │ ├── ProjectState.cs │ │ ├── ProjectSystemRazorConfiguration.cs │ │ ├── ProjectSystemRazorExtension.cs │ │ └── WorkspaceProjectSnapshotChangeTrigger.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RazorCompletionFactsService.cs │ ├── RazorCompletionItem.cs │ ├── RazorCompletionItemKind.cs │ ├── RazorDocumentExcerptService.cs │ ├── RazorDocumentServiceProvider.cs │ ├── RazorSpanMappingService.cs │ ├── Resources.resx │ ├── SourceTextExtensions.cs │ ├── TagHelperResolutionResult.cs │ └── TagHelperResolver.cs ├── Microsoft.CodeAnalysis.Razor │ ├── AssemblyIdentityEqualityComparer.cs │ ├── CompilationTagHelperFeature.cs │ ├── ComponentTagHelperDescriptorProvider.cs │ ├── DefaultMetadataReferenceFeature.cs │ ├── DefaultTagHelperDescriptorFactory.cs │ ├── DefaultTagHelperDescriptorProvider.cs │ ├── FilePathComparer.cs │ ├── IMetadataReferenceFeature.cs │ ├── Microsoft.CodeAnalysis.Razor.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RazorDiagnosticFactory.cs │ ├── RazorLanguage.cs │ ├── RequiredAttributeParser.cs │ ├── Resources.resx │ ├── SourceSpanExtensions.cs │ ├── TagHelperDescriptorProviderContextExtensions.cs │ ├── TagHelperTypeVisitor.cs │ ├── TagHelperTypes.cs │ ├── TextChangeExtensions.cs │ ├── TextSpanExtensions.cs │ ├── baseline.netcore.json │ └── baseline.netframework.json ├── Microsoft.CodeAnalysis.Remote.Razor │ ├── Microsoft.CodeAnalysis.Remote.Razor.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RazorLanguageService.cs │ ├── RazorServiceBase.cs │ ├── RazorServices.cs │ └── RemoteTagHelperResolver.cs ├── Microsoft.NET.Sdk.Razor │ ├── DotnetToolTask.cs │ ├── Microsoft.NET.Sdk.Razor.csproj │ ├── Microsoft.NET.Sdk.Razor.nuspec │ ├── RazorGenerate.cs │ ├── RazorTagHelper.cs │ ├── Sdk │ │ ├── Sdk.props │ │ └── Sdk.targets │ ├── baseline.netcore.json │ ├── baseline.netframework.json │ ├── build │ │ └── netstandard2.0 │ │ │ ├── Microsoft.NET.Sdk.Razor.CodeGeneration.targets │ │ │ ├── Microsoft.NET.Sdk.Razor.Compilation.targets │ │ │ ├── Microsoft.NET.Sdk.Razor.Component.targets │ │ │ ├── Microsoft.NET.Sdk.Razor.Configuration.targets │ │ │ ├── Microsoft.NET.Sdk.Razor.DesignTime.targets │ │ │ ├── Microsoft.NET.Sdk.Razor.GenerateAssemblyInfo.targets │ │ │ ├── Microsoft.NET.Sdk.Razor.props │ │ │ ├── Rules │ │ │ ├── RazorConfiguration.xaml │ │ │ ├── RazorExtension.xaml │ │ │ ├── RazorGeneral.xaml │ │ │ └── RazorGenerateWithTargetPath.xaml │ │ │ ├── Sdk.Razor.CurrentVersion.props │ │ │ └── Sdk.Razor.CurrentVersion.targets │ └── buildMultiTargeting │ │ ├── Microsoft.NET.Sdk.Razor.props │ │ └── Sdk.Razor.CurrentVersion.MultiTargeting.targets ├── Microsoft.VisualStudio.Editor.Razor │ ├── AcceptedCharacters.cs │ ├── AttributeCompletionContext.cs │ ├── AttributeCompletionResult.cs │ ├── BackgroundParser.cs │ ├── BackgroundParserResultsReadyEventArgs.cs │ ├── BlockKind.cs │ ├── BraceSmartIndenter.cs │ ├── BraceSmartIndenterFactory.cs │ ├── BufferGraphExtensions.cs │ ├── ClassifiedSpan.cs │ ├── ContextChangeEventArgs.cs │ ├── ContextChangeKind.cs │ ├── DefaultBraceSmartIndenterFactory.cs │ ├── DefaultBraceSmartIndenterFactoryFactory.cs │ ├── DefaultCodeDocumentProvider.cs │ ├── DefaultEditorSettingsManager.cs │ ├── DefaultImportDocumentManager.cs │ ├── DefaultImportDocumentManagerFactory.cs │ ├── DefaultProjectPathProvider.cs │ ├── DefaultProjectPathProviderFactory.cs │ ├── DefaultRazorDocumentManager.cs │ ├── DefaultRazorEditorFactoryService.cs │ ├── DefaultRazorIndentationFactsService.cs │ ├── DefaultRazorSyntaxFactsService.cs │ ├── DefaultTagHelperCompletionService.cs │ ├── DefaultTagHelperFactsService.cs │ ├── DefaultTagHelperResolver.cs │ ├── DefaultTagHelperResolverFactory.cs │ ├── DefaultTextBufferCodeDocumentProvider.cs │ ├── DefaultTextBufferProvider.cs │ ├── DefaultVisualStudioDocumentTracker.cs │ ├── DefaultVisualStudioDocumentTrackerFactory.cs │ ├── DefaultVisualStudioDocumentTrackerFactoryFactory.cs │ ├── DefaultVisualStudioRazorParser.cs │ ├── DefaultVisualStudioRazorParserFactory.cs │ ├── DefaultVisualStudioRazorParserFactoryFactory.cs │ ├── DefaultWorkspaceEditorSettings.cs │ ├── DefaultWorkspaceEditorSettingsFactory.cs │ ├── DocumentStructureChangedEventArgs.cs │ ├── Documents │ │ ├── DefaultFileChangeTracker.cs │ │ ├── DefaultFileChangeTrackerFactory.cs │ │ ├── EditorDocument.cs │ │ ├── EditorDocumentManager.cs │ │ ├── EditorDocumentManagerBase.cs │ │ ├── EditorDocumentManagerListener.cs │ │ ├── FileChangeEventArgs.cs │ │ ├── FileChangeKind.cs │ │ ├── FileChangeTracker.cs │ │ ├── FileChangeTrackerFactory.cs │ │ └── SnapshotChangeTracker.cs │ ├── EditorSettingsManager.cs │ ├── ElementCompletionContext.cs │ ├── ElementCompletionResult.cs │ ├── ImportChangedEventArgs.cs │ ├── ImportDocumentManager.cs │ ├── LegacyProjectEngineFactory_1_0.cs │ ├── LegacyProjectEngineFactory_1_1.cs │ ├── LegacyProjectEngineFactory_2_0.cs │ ├── LegacyProjectEngineFactory_2_1.cs │ ├── LegacyProjectEngineFactory_3_0.cs │ ├── LiveShareWorkspaceProvider.cs │ ├── Microsoft.VisualStudio.Editor.Razor.csproj │ ├── ProjectPathProvider.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RazorCodeDocumentProvider.cs │ ├── RazorDirectiveCompletionProvider.cs │ ├── RazorDirectiveCompletionSource.cs │ ├── RazorDirectiveCompletionSourceProvider.cs │ ├── RazorDocumentManager.cs │ ├── RazorEditorFactoryService.cs │ ├── RazorIndentationFactsService.cs │ ├── RazorSyntaxFactsService.cs │ ├── RazorSyntaxFactsServiceExtensions.cs │ ├── RazorSyntaxTreePartialParser.cs │ ├── RazorTextBufferProvider.cs │ ├── RazorTextViewConnectionListener.cs │ ├── Resources.resx │ ├── SpanKind.cs │ ├── TagHelperCompletionService.cs │ ├── TagHelperFactsService.cs │ ├── TagHelperSpan.cs │ ├── TextBufferCodeDocumentProvider.cs │ ├── TextBufferExtensions.cs │ ├── TextBufferProjectService.cs │ ├── TextContentChangedEventArgsExtensions.cs │ ├── TextSnapshotProjectItem.cs │ ├── VisualStudioCompletionBroker.cs │ ├── VisualStudioDocumentTracker.cs │ ├── VisualStudioDocumentTrackerFactory.cs │ ├── VisualStudioRazorParser.cs │ ├── VisualStudioRazorParserFactory.cs │ └── VisualStudioWorkspaceAccessor.cs ├── Microsoft.VisualStudio.LanguageServices.Razor │ ├── BackgroundDocumentGenerator.cs │ ├── DefaultVisualStudioWorkspaceAccessor.cs │ ├── Documents │ │ ├── RunningDocumentTableEventSink.cs │ │ ├── VisaulStudioFileChangeTracker.cs │ │ ├── VisualStudioEditorDocumentManager.cs │ │ ├── VisualStudioEditorDocumentManagerFactory.cs │ │ ├── VisualStudioFileChangeTrackerFactory.cs │ │ ├── VisualStudioFileChangeTrackerFactoryFactory.cs │ │ └── VsTextBufferDataEventsSink.cs │ ├── Editor │ │ ├── DefaultTextBufferProjectService.cs │ │ ├── DefaultVisualStudioCompletionBroker.cs │ │ └── DefaultVisualStudioCompletionBrokerFactory.cs │ ├── Microsoft.VisualStudio.LanguageServices.Razor.csproj │ ├── Microsoft.VisualStudio.LanguageServices.Razor.ruleset │ ├── OOPTagHelperResolver.cs │ ├── OOPTagHelperResolverFactory.cs │ ├── ProjectSystem │ │ ├── DefaultRazorProjectHost.cs │ │ ├── DefaultWorkspaceProjectContextFactory.cs │ │ ├── FallbackRazorProjectHost.cs │ │ ├── GeneratedDocumentTextLoader.cs │ │ ├── IUnconfiguredProjectCommonServices.cs │ │ ├── IWorkspaceProjectContext.cs │ │ ├── IWorkspaceProjectContextFactory.cs │ │ ├── ManagedProjectSystemSchema.cs │ │ ├── ProjectExternalErrorReporter.cs │ │ ├── RazorProjectHostBase.cs │ │ ├── Rules │ │ │ ├── RazorConfiguration.cs │ │ │ ├── RazorExtension.cs │ │ │ ├── RazorGeneral.cs │ │ │ ├── RazorGenerateWithTargetPath.cs │ │ │ └── RazorProjectProperties.cs │ │ └── UnconfiguredProjectCommonServices.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Resources.resx │ ├── Serialization │ │ ├── JsonConverterCollectionExtensions.cs │ │ ├── ProjectSnapshotHandle.cs │ │ ├── ProjectSnapshotHandleJsonConverter.cs │ │ ├── ProjectSnapshotJsonConverter.cs │ │ ├── RazorConfigurationJsonConverter.cs │ │ ├── RazorDiagnosticJsonConverter.cs │ │ ├── RazorExtensionJsonConverter.cs │ │ ├── SerializedRazorExtension.cs │ │ └── TagHelperDescriptorJsonConverter.cs │ ├── VisualStudioErrorReporter.cs │ ├── VisualStudioErrorReporterFactory.cs │ ├── VisualStudioForegroundDispatcher.cs │ └── VsSolutionUpdatesProjectSnapshotChangeTrigger.cs ├── Microsoft.VisualStudio.Mac.LanguageServices.Razor │ ├── DefaultVisualStudioMacWorkspaceAccessor.cs │ ├── Documents │ │ ├── VisualStudioMacFileChangeTracker.cs │ │ ├── VisualStudioMacFileChangeTrackerFactory.cs │ │ └── VisualStudioMacFileChangeTrackerFactoryFactory.cs │ ├── Editor │ │ ├── DefaultTextBufferProjectService.cs │ │ ├── DefaultVisualStudioCompletionBroker.cs │ │ └── DefaultVisualStudioCompletionBrokerFactory.cs │ ├── Microsoft.VisualStudio.Mac.LanguageServices.Razor.csproj │ ├── ProjectBuildChangeTrigger.cs │ ├── ProjectSystem │ │ ├── DefaultDotNetProjectHost.cs │ │ ├── DefaultRazorProjectHost.cs │ │ ├── DotNetProjectHost.cs │ │ ├── DotNetProjectHostFactory.cs │ │ ├── FallbackRazorProjectHost.cs │ │ └── RazorProjectHostBase.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Resources.resx │ ├── VisualStudioErrorReporter.cs │ ├── VisualStudioErrorReporterFactory.cs │ ├── VisualStudioForegroundDispatcher.cs │ └── VisualStudioMacWorkspaceAccessor.cs └── RazorPageGenerator │ ├── Program.cs │ ├── RazorPageGenerator.csproj │ └── RazorPageGeneratorResult.cs ├── test ├── Directory.Build.props ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Test │ ├── AssemblyAttributeInjectionPassTest.cs │ ├── InjectDirectiveTest.cs │ ├── InjectTargetExtensionTest.cs │ ├── IntegrationTests │ │ └── CodeGenerationIntegrationTest.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Test.csproj │ ├── ModelDirectiveTest.cs │ ├── ModelExpressionPassTest.cs │ ├── MvcImportProjectFeatureTest.cs │ ├── MvcRazorTemplateEngineTest.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 │ ├── ViewComponentTagHelperDescriptorFactoryTest.cs │ ├── ViewComponentTagHelperDescriptorProviderTest.cs │ ├── ViewComponentTagHelperPassTest.cs │ ├── ViewComponentTagHelperTargetExtensionTest.cs │ ├── ViewComponentTypeVisitorTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.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 │ ├── MvcRazorTemplateEngineTest.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.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.Razor.Language.Test │ ├── BoundAttributeDescriptorExtensionsTest.cs │ ├── CodeGeneration │ │ ├── CSharpCodeWriterTest.cs │ │ ├── CodeTargetTest.cs │ │ ├── DefaultCodeTargetBuilderTest.cs │ │ ├── DefaultCodeTargetTest.cs │ │ ├── DefaultDocumentWriterTest.cs │ │ ├── DesignTimeNodeWriterTest.cs │ │ ├── LiteralRuntimeNodeWriterTest.cs │ │ ├── RuntimeNodeWriterTest.cs │ │ └── TagHelperHtmlAttributeRuntimeNodeWriterTest.cs │ ├── Components │ │ └── ComponentDocumentClassifierPassTest.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 │ ├── 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 │ ├── HtmlConventionsTest.cs │ ├── HtmlNodeOptimizationPassTest.cs │ ├── IntegrationTests │ │ ├── BasicIntegrationTest.cs │ │ ├── CodeGenerationIntegrationTest.cs │ │ ├── ComponentIntegrationTest.cs │ │ ├── ExtensibleDirectiveTest.cs │ │ ├── HtmlAttributeIntegrationTest.cs │ │ ├── RazorTemplateEngineIntegrationTest.cs │ │ ├── SuppressPrimaryMethodBodyntegrationTest.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 │ │ ├── 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 │ │ ├── CodeParserTestBase.cs │ │ ├── CsHtmlCodeParserTestBase.cs │ │ ├── CsHtmlMarkupParserTestBase.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 │ │ ├── LineTrackingStringBufferTest.cs │ │ ├── MarkupElementRewriterTest.cs │ │ ├── MarkupParserTestBase.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 │ ├── RazorTemplateEngineTest.cs │ ├── SourceChangeTest.cs │ ├── SourceLocationTest.cs │ ├── SourceSpanTest.cs │ ├── StreamSourceDocumentTest.cs │ ├── StringSourceDocumentTest.cs │ ├── TagHelperBinderTest.cs │ ├── TagHelperDescriptorBuilderTest.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.ir.txt │ │ │ │ ├── AddTagHelperDirective_DesignTime.mappings.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.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.ir.txt │ │ │ │ ├── Blocks_DesignTime.mappings.txt │ │ │ │ ├── Blocks_Runtime.codegen.cs │ │ │ │ ├── Blocks_Runtime.ir.txt │ │ │ │ ├── CSharp7.cshtml │ │ │ │ ├── CSharp7_DesignTime.codegen.cs │ │ │ │ ├── CSharp7_DesignTime.ir.txt │ │ │ │ ├── CSharp7_DesignTime.mappings.txt │ │ │ │ ├── CSharp7_Runtime.codegen.cs │ │ │ │ ├── CSharp7_Runtime.ir.txt │ │ │ │ ├── CodeBlock.cshtml │ │ │ │ ├── CodeBlockAtEOF.cshtml │ │ │ │ ├── CodeBlockAtEOF_DesignTime.codegen.cs │ │ │ │ ├── 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.ir.txt │ │ │ │ ├── CodeBlockWithTextElement_DesignTime.mappings.txt │ │ │ │ ├── CodeBlockWithTextElement_Runtime.codegen.cs │ │ │ │ ├── CodeBlockWithTextElement_Runtime.ir.txt │ │ │ │ ├── CodeBlock_DesignTime.codegen.cs │ │ │ │ ├── CodeBlock_DesignTime.ir.txt │ │ │ │ ├── CodeBlock_DesignTime.mappings.txt │ │ │ │ ├── CodeBlock_Runtime.codegen.cs │ │ │ │ ├── CodeBlock_Runtime.ir.txt │ │ │ │ ├── ComplexTagHelpers.cshtml │ │ │ │ ├── ComplexTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── ComplexTagHelpers_DesignTime.ir.txt │ │ │ │ ├── ComplexTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── ComplexTagHelpers_Runtime.codegen.cs │ │ │ │ ├── ComplexTagHelpers_Runtime.ir.txt │ │ │ │ ├── ConditionalAttributes.cshtml │ │ │ │ ├── ConditionalAttributes_DesignTime.codegen.cs │ │ │ │ ├── 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.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.ir.txt │ │ │ │ ├── EmptyCodeBlock_DesignTime.mappings.txt │ │ │ │ ├── EmptyCodeBlock_Runtime.codegen.cs │ │ │ │ ├── EmptyCodeBlock_Runtime.ir.txt │ │ │ │ ├── EmptyExplicitExpression.cshtml │ │ │ │ ├── EmptyExplicitExpression_DesignTime.codegen.cs │ │ │ │ ├── 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.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.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.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.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.ir.txt │ │ │ │ ├── ExplicitExpression_DesignTime.mappings.txt │ │ │ │ ├── ExplicitExpression_Runtime.codegen.cs │ │ │ │ ├── ExplicitExpression_Runtime.ir.txt │ │ │ │ ├── ExpressionsInCode.cshtml │ │ │ │ ├── ExpressionsInCode_DesignTime.codegen.cs │ │ │ │ ├── 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.ir.txt │ │ │ │ ├── FunctionsBlockMinimal_DesignTime.mappings.txt │ │ │ │ ├── FunctionsBlockMinimal_Runtime.codegen.cs │ │ │ │ ├── FunctionsBlockMinimal_Runtime.ir.txt │ │ │ │ ├── FunctionsBlock_DesignTime.codegen.cs │ │ │ │ ├── FunctionsBlock_DesignTime.ir.txt │ │ │ │ ├── FunctionsBlock_DesignTime.mappings.txt │ │ │ │ ├── FunctionsBlock_Runtime.codegen.cs │ │ │ │ ├── FunctionsBlock_Runtime.ir.txt │ │ │ │ ├── HiddenSpansInCode.cshtml │ │ │ │ ├── HiddenSpansInCode_DesignTime.codegen.cs │ │ │ │ ├── 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.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.ir.txt │ │ │ │ ├── HtmlCommentWithQuote_Single_DesignTime.mappings.txt │ │ │ │ ├── HtmlCommentWithQuote_Single_Runtime.codegen.cs │ │ │ │ ├── HtmlCommentWithQuote_Single_Runtime.ir.txt │ │ │ │ ├── ImplicitExpression.cshtml │ │ │ │ ├── ImplicitExpressionAtEOF.cshtml │ │ │ │ ├── ImplicitExpressionAtEOF_DesignTime.codegen.cs │ │ │ │ ├── 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.ir.txt │ │ │ │ ├── ImplicitExpression_DesignTime.mappings.txt │ │ │ │ ├── ImplicitExpression_Runtime.codegen.cs │ │ │ │ ├── ImplicitExpression_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 │ │ │ │ ├── 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.ir.txt │ │ │ │ ├── Inherits_DesignTime.mappings.txt │ │ │ │ ├── Inherits_Runtime.codegen.cs │ │ │ │ ├── Inherits_Runtime.ir.txt │ │ │ │ ├── InlineBlocks.cshtml │ │ │ │ ├── InlineBlocks_DesignTime.codegen.cs │ │ │ │ ├── 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.ir.txt │ │ │ │ ├── Instrumented_DesignTime.mappings.txt │ │ │ │ ├── Instrumented_Runtime.codegen.cs │ │ │ │ ├── Instrumented_Runtime.ir.txt │ │ │ │ ├── MarkupInCodeBlock.cshtml │ │ │ │ ├── MarkupInCodeBlock_DesignTime.codegen.cs │ │ │ │ ├── MarkupInCodeBlock_DesignTime.ir.txt │ │ │ │ ├── MarkupInCodeBlock_DesignTime.mappings.txt │ │ │ │ ├── MarkupInCodeBlock_Runtime.codegen.cs │ │ │ │ ├── MarkupInCodeBlock_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.ir.txt │ │ │ │ ├── NestedCSharp_DesignTime.mappings.txt │ │ │ │ ├── NestedCSharp_Runtime.codegen.cs │ │ │ │ ├── NestedCSharp_Runtime.ir.txt │ │ │ │ ├── NestedCodeBlocks.cshtml │ │ │ │ ├── NestedCodeBlocks_DesignTime.codegen.cs │ │ │ │ ├── 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.ir.txt │ │ │ │ ├── NoLinePragmas_DesignTime.mappings.txt │ │ │ │ ├── NoLinePragmas_Runtime.codegen.cs │ │ │ │ ├── NoLinePragmas_Runtime.ir.txt │ │ │ │ ├── NullConditionalExpressions.cshtml │ │ │ │ ├── NullConditionalExpressions_DesignTime.codegen.cs │ │ │ │ ├── NullConditionalExpressions_DesignTime.ir.txt │ │ │ │ ├── NullConditionalExpressions_DesignTime.mappings.txt │ │ │ │ ├── NullConditionalExpressions_Runtime.codegen.cs │ │ │ │ ├── NullConditionalExpressions_Runtime.ir.txt │ │ │ │ ├── OpenedIf.cshtml │ │ │ │ ├── OpenedIf_DesignTime.codegen.cs │ │ │ │ ├── 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.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.ir.txt │ │ │ │ ├── RazorComments_DesignTime.mappings.txt │ │ │ │ ├── RazorComments_Runtime.codegen.cs │ │ │ │ ├── RazorComments_Runtime.ir.txt │ │ │ │ ├── RemoveTagHelperDirective.cshtml │ │ │ │ ├── RemoveTagHelperDirective_DesignTime.codegen.cs │ │ │ │ ├── RemoveTagHelperDirective_DesignTime.ir.txt │ │ │ │ ├── RemoveTagHelperDirective_DesignTime.mappings.txt │ │ │ │ ├── Sections.cshtml │ │ │ │ ├── Sections_DesignTime.codegen.cs │ │ │ │ ├── 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.ir.txt │ │ │ │ ├── SimpleUnspacedIf_DesignTime.mappings.txt │ │ │ │ ├── SimpleUnspacedIf_Runtime.codegen.cs │ │ │ │ ├── SimpleUnspacedIf_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.ir.txt │ │ │ │ ├── StringLiterals_DesignTime.mappings.txt │ │ │ │ ├── StringLiterals_Runtime.codegen.cs │ │ │ │ ├── StringLiterals_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_Runtime.codegen.cs │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── Templates.cshtml │ │ │ │ ├── Templates_DesignTime.codegen.cs │ │ │ │ ├── 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.ir.txt │ │ │ │ ├── UnfinishedExpressionInCode_DesignTime.mappings.txt │ │ │ │ ├── UnfinishedExpressionInCode_Runtime.codegen.cs │ │ │ │ ├── UnfinishedExpressionInCode_Runtime.ir.txt │ │ │ │ ├── Usings.cshtml │ │ │ │ ├── Usings_DesignTime.codegen.cs │ │ │ │ ├── Usings_DesignTime.ir.txt │ │ │ │ ├── Usings_DesignTime.mappings.txt │ │ │ │ ├── Usings_Runtime.codegen.cs │ │ │ │ └── Usings_Runtime.ir.txt │ │ │ ├── ComponentIntegrationTest │ │ │ │ ├── BasicTest.codegen.cs │ │ │ │ ├── BasicTest.ir.txt │ │ │ │ └── BasicTest.razor │ │ │ ├── ExtensibleDirectiveTest │ │ │ │ ├── NamespaceToken.codegen.cs │ │ │ │ ├── NamespaceToken.cshtml │ │ │ │ ├── NamespaceToken.ir.txt │ │ │ │ └── NamespaceToken.mappings.txt │ │ │ ├── HtmlAttributeIntegrationTest │ │ │ │ ├── HtmlWithConditionalAttribute.cshtml │ │ │ │ ├── HtmlWithConditionalAttribute.ir.txt │ │ │ │ ├── HtmlWithDataDashAttribute.cshtml │ │ │ │ └── HtmlWithDataDashAttribute.ir.txt │ │ │ ├── RazorTemplateEngineIntegrationTest │ │ │ │ ├── GenerateCodeWithBaseType.codegen.cs │ │ │ │ ├── GenerateCodeWithBaseType.cshtml │ │ │ │ ├── GenerateCodeWithConfigureClass.codegen.cs │ │ │ │ ├── GenerateCodeWithConfigureClass.cshtml │ │ │ │ ├── GenerateCodeWithDefaults.codegen.cs │ │ │ │ ├── GenerateCodeWithDefaults.cshtml │ │ │ │ ├── GenerateCodeWithSetNamespace.codegen.cs │ │ │ │ └── GenerateCodeWithSetNamespace.cshtml │ │ │ ├── SuppressPrimaryMethodBodyIntegrationTest │ │ │ │ ├── BasicTest.codegen.cs │ │ │ │ ├── BasicTest.ir.txt │ │ │ │ └── BasicTest.razor │ │ │ └── TagHelpersIntegrationTest │ │ │ │ ├── NestedTagHelpers.cshtml │ │ │ │ ├── NestedTagHelpers.ir.txt │ │ │ │ ├── SimpleTagHelpers.cshtml │ │ │ │ ├── SimpleTagHelpers.ir.txt │ │ │ │ ├── TagHelpersWithBoundAttributes.cshtml │ │ │ │ └── TagHelpersWithBoundAttributes.ir.txt │ │ ├── ParserTests │ │ │ ├── CSharpAutoCompleteTest │ │ │ │ ├── FunctionsDirectiveAutoCompleteAtEOF.cspans.txt │ │ │ │ ├── FunctionsDirectiveAutoCompleteAtEOF.stree.txt │ │ │ │ ├── FunctionsDirectiveAutoCompleteAtStartOfFile.cspans.txt │ │ │ │ ├── FunctionsDirectiveAutoCompleteAtStartOfFile.stree.txt │ │ │ │ ├── SectionDirectiveAutoCompleteAtEOF.cspans.txt │ │ │ │ ├── SectionDirectiveAutoCompleteAtEOF.stree.txt │ │ │ │ ├── SectionDirectiveAutoCompleteAtStartOfFile.cspans.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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.diag.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.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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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.stree.txt │ │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingName.cspans.txt │ │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingName.stree.txt │ │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingOpenBrace.cspans.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.stree.txt │ │ │ │ ├── HandlesEOFAfterOpenContent1.cspans.txt │ │ │ │ ├── HandlesEOFAfterOpenContent1.stree.txt │ │ │ │ ├── HandlesEOFAfterOpenContent2.cspans.txt │ │ │ │ ├── HandlesEOFAfterOpenContent2.stree.txt │ │ │ │ ├── HandlesEOFAfterOpenContent3.cspans.txt │ │ │ │ ├── HandlesEOFAfterOpenContent3.stree.txt │ │ │ │ ├── HandlesEOFAfterOpenContent4.cspans.txt │ │ │ │ ├── HandlesEOFAfterOpenContent4.stree.txt │ │ │ │ ├── HandlesUnterminatedSection.cspans.txt │ │ │ │ ├── HandlesUnterminatedSection.stree.txt │ │ │ │ ├── HandlesUnterminatedSectionWithNestedIf.cspans.txt │ │ │ │ ├── HandlesUnterminatedSectionWithNestedIf.stree.txt │ │ │ │ ├── IgnoresSectionUnlessAllLowerCase.cspans.txt │ │ │ │ ├── IgnoresSectionUnlessAllLowerCase.stree.txt │ │ │ │ ├── ParserOutputsErrorOnNestedSections.cspans.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.stree.txt │ │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfKeywordNotFollowedByIdentifierStartChar.cspans.txt │ │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfKeywordNotFollowedByIdentifierStartChar.stree.txt │ │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfNameNotFollowedByOpenBrace.cspans.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.diag.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.diag.txt │ │ │ │ └── TypeAliasInsideCodeBlockIsNotHandledSpecially.stree.txt │ │ │ ├── CSharpStatementTest │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── TryStatement.cspans.txt │ │ │ │ ├── TryStatement.stree.txt │ │ │ │ ├── UsingNamespaceImport.cspans.txt │ │ │ │ ├── UsingNamespaceImport.stree.txt │ │ │ │ ├── UsingStatement.cspans.txt │ │ │ │ ├── UsingStatement.stree.txt │ │ │ │ ├── UsingTypeAlias.cspans.txt │ │ │ │ ├── UsingTypeAlias.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 │ │ │ │ ├── ConditionalAttributeCollapserDoesNotRewriteEscapedTransitions.cspans.txt │ │ │ │ ├── ConditionalAttributeCollapserDoesNotRewriteEscapedTransitions.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 │ │ │ │ ├── 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.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.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 │ │ │ │ ├── StartingWithEndTagErrorsThenOutputsMarkupSegmentAndEndsBlock.cspans.txt │ │ │ │ ├── StartingWithEndTagErrorsThenOutputsMarkupSegmentAndEndsBlock.diag.txt │ │ │ │ ├── StartingWithEndTagErrorsThenOutputsMarkupSegmentAndEndsBlock.stree.txt │ │ │ │ ├── ThrowsErrorIfEndTextTagContainsTextAfterName.cspans.txt │ │ │ │ ├── ThrowsErrorIfEndTextTagContainsTextAfterName.diag.txt │ │ │ │ ├── ThrowsErrorIfEndTextTagContainsTextAfterName.stree.txt │ │ │ │ ├── ThrowsErrorIfStartTextTagContainsTextAfterName.cspans.txt │ │ │ │ ├── ThrowsErrorIfStartTextTagContainsTextAfterName.diag.txt │ │ │ │ ├── ThrowsErrorIfStartTextTagContainsTextAfterName.stree.txt │ │ │ │ ├── ThrowsExceptionIfBlockDoesNotStartWithTag.cspans.txt │ │ │ │ ├── ThrowsExceptionIfBlockDoesNotStartWithTag.diag.txt │ │ │ │ ├── ThrowsExceptionIfBlockDoesNotStartWithTag.stree.txt │ │ │ │ ├── WithUnclosedTagAtEOFThrowsMissingEndTagException.cspans.txt │ │ │ │ ├── WithUnclosedTagAtEOFThrowsMissingEndTagException.diag.txt │ │ │ │ ├── WithUnclosedTagAtEOFThrowsMissingEndTagException.stree.txt │ │ │ │ ├── WithUnclosedTopLevelTagThrowsOnOutermostUnclosedTag.cspans.txt │ │ │ │ ├── WithUnclosedTopLevelTagThrowsOnOutermostUnclosedTag.diag.txt │ │ │ │ ├── WithUnclosedTopLevelTagThrowsOnOutermostUnclosedTag.stree.txt │ │ │ │ ├── WithUnfinishedTagAtEOFThrowsIncompleteTagException.cspans.txt │ │ │ │ ├── WithUnfinishedTagAtEOFThrowsIncompleteTagException.diag.txt │ │ │ │ └── WithUnfinishedTagAtEOFThrowsIncompleteTagException.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_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 │ │ │ │ ├── GivesWhitespacePreceedingAtToCodeIfThereIsNoMarkupOnThatLine.cspans.txt │ │ │ │ ├── GivesWhitespacePreceedingAtToCodeIfThereIsNoMarkupOnThatLine.stree.txt │ │ │ │ ├── ParseBlockDoesNotSwitchToCodeOnEmailAddressInText.cspans.txt │ │ │ │ ├── ParseBlockDoesNotSwitchToCodeOnEmailAddressInText.stree.txt │ │ │ │ ├── ParseDocumentGivesWhitespacePreceedingAtToCodeIfThereIsNoMarkupOnThatLine.cspans.txt │ │ │ │ ├── ParseDocumentGivesWhitespacePreceedingAtToCodeIfThereIsNoMarkupOnThatLine.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 │ │ │ │ ├── SectionContextGivesWhitespacePreceedingAtToCodeIfThereIsNoMarkupOnThatLine.cspans.txt │ │ │ │ ├── SectionContextGivesWhitespacePreceedingAtToCodeIfThereIsNoMarkupOnThatLine.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 │ │ │ ├── MarkupElementRewriterTest │ │ │ │ ├── Rewrites_DoesNotSpecialCase_VoidTags.cspans.txt │ │ │ │ ├── Rewrites_DoesNotSpecialCase_VoidTags.stree.txt │ │ │ │ ├── Rewrites_EndTagsWithMissingStartTags.cspans.txt │ │ │ │ ├── Rewrites_EndTagsWithMissingStartTags.stree.txt │ │ │ │ ├── Rewrites_IncompleteTags.cspans.txt │ │ │ │ ├── Rewrites_IncompleteTags.stree.txt │ │ │ │ ├── Rewrites_MalformedTags_RecoversSuccessfully.cspans.txt │ │ │ │ ├── Rewrites_MalformedTags_RecoversSuccessfully.stree.txt │ │ │ │ ├── Rewrites_MisplacedEndTags_RecoversSuccessfully.cspans.txt │ │ │ │ ├── Rewrites_MisplacedEndTags_RecoversSuccessfully.stree.txt │ │ │ │ ├── Rewrites_SelfClosingTags.cspans.txt │ │ │ │ ├── Rewrites_SelfClosingTags.stree.txt │ │ │ │ ├── Rewrites_StartTagsWithMissingEndTags.cspans.txt │ │ │ │ ├── Rewrites_StartTagsWithMissingEndTags.stree.txt │ │ │ │ ├── Rewrites_ValidNestedTags.cspans.txt │ │ │ │ ├── Rewrites_ValidNestedTags.stree.txt │ │ │ │ ├── Rewrites_ValidNestedTagsMixedWithCode.cspans.txt │ │ │ │ ├── Rewrites_ValidNestedTagsMixedWithCode.stree.txt │ │ │ │ ├── Rewrites_ValidTags.cspans.txt │ │ │ │ └── Rewrites_ValidTags.stree.txt │ │ │ ├── RazorDirectivesTest │ │ │ │ ├── AddTagHelperDirective_EndQuoteRequiresDoubleQuotesAroundValue.cspans.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.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_CanHandleEOFIncompleteNamespaceTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleEOFIncompleteNamespaceTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleEOFInvalidNamespaceTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleEOFInvalidNamespaceTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleIncompleteNamespaceTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleIncompleteNamespaceTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleInvalidNamespaceTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleInvalidNamespaceTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsExtraContentAfterDirective.cspans.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsExtraContentAfterDirective.stree.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsForInvalidMemberTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsForInvalidMemberTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsWhenEOFBeforeDirectiveBlockStart.cspans.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsWhenEOFBeforeDirectiveBlockStart.stree.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsWhenExtraContentBeforeBlockStart.cspans.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsWhenExtraContentBeforeBlockStart.stree.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsWhenMissingEndBrace.cspans.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsWhenMissingEndBrace.stree.txt │ │ │ │ ├── DirectiveDescriptor_FileScopedMultipleOccurring_CanHaveDuplicates.cspans.txt │ │ │ │ ├── DirectiveDescriptor_FileScopedMultipleOccurring_CanHaveDuplicates.stree.txt │ │ │ │ ├── DirectiveDescriptor_FileScopedSinglyOccurring_ErrorsIfDuplicate.cspans.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_NoErrorsSemicolonAfterDirective.cspans.txt │ │ │ │ ├── DirectiveDescriptor_NoErrorsSemicolonAfterDirective.stree.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForNonStringValue.cspans.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForNonStringValue.stree.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForPartialQuotedValue.cspans.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForPartialQuotedValue.stree.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForSingleQuotedValue.cspans.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForSingleQuotedValue.stree.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForUnquotedValue.cspans.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForUnquotedValue.stree.txt │ │ │ │ ├── DirectiveDescriptor_TokensMustBeSeparatedBySpace.cspans.txt │ │ │ │ ├── DirectiveDescriptor_TokensMustBeSeparatedBySpace.stree.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsCodeBlocks.cspans.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsCodeBlocks.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 │ │ │ │ ├── Directives_CanUseReservedWord_Class.cspans.txt │ │ │ │ ├── Directives_CanUseReservedWord_Class.stree.txt │ │ │ │ ├── Directives_CanUseReservedWord_Namespace.cspans.txt │ │ │ │ ├── Directives_CanUseReservedWord_Namespace.stree.txt │ │ │ │ ├── EmptyFunctionsDirective.cspans.txt │ │ │ │ ├── EmptyFunctionsDirective.stree.txt │ │ │ │ ├── ExtensibleDirectiveDoesNotErorrIfNotAtStartOfLineBecauseOfWhitespace.cspans.txt │ │ │ │ ├── ExtensibleDirectiveDoesNotErorrIfNotAtStartOfLineBecauseOfWhitespace.stree.txt │ │ │ │ ├── ExtensibleDirectiveErrorsIfNotAtStartOfLine.cspans.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.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.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.stree.txt │ │ │ │ ├── TagHelperPrefixDirective_NoValueSucceeds.cspans.txt │ │ │ │ ├── TagHelperPrefixDirective_NoValueSucceeds.stree.txt │ │ │ │ ├── TagHelperPrefixDirective_RequiresValue.cspans.txt │ │ │ │ ├── TagHelperPrefixDirective_RequiresValue.stree.txt │ │ │ │ ├── TagHelperPrefixDirective_StartQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ │ ├── TagHelperPrefixDirective_StartQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ │ ├── TagHelperPrefixDirective_Succeeds.cspans.txt │ │ │ │ ├── TagHelperPrefixDirective_Succeeds.stree.txt │ │ │ │ ├── TagHelperPrefixDirective_WithQuotes_Succeeds.cspans.txt │ │ │ │ └── TagHelperPrefixDirective_WithQuotes_Succeeds.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── HandlesMalformedNestedNonTagHelperTags_Correctly.cspans.txt │ │ │ │ ├── HandlesMalformedNestedNonTagHelperTags_Correctly.diag.txt │ │ │ │ ├── HandlesMalformedNestedNonTagHelperTags_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 │ │ │ │ ├── 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 │ │ │ │ ├── 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.AspNetCore.Razor.Runtime.Test │ ├── Microsoft.AspNetCore.Razor.Runtime.Test.csproj │ ├── Runtime │ │ └── TagHelpers │ │ │ ├── TagHelperExecutionContextTest.cs │ │ │ ├── TagHelperRunnerTest.cs │ │ │ ├── TagHelperScopeManagerTest.cs │ │ │ └── TestTagHelpers │ │ │ ├── CommonTagHelpers.cs │ │ │ └── TagHelperDescriptorFactoryTagHelpers.cs │ ├── TestFiles │ │ ├── Localized │ │ │ ├── TagHelperDocumentation.nl-BE.xml │ │ │ ├── en-GB │ │ │ │ └── TagHelperDocumentation.xml │ │ │ ├── en │ │ │ │ └── TagHelperDocumentation.xml │ │ │ ├── fr-FR │ │ │ │ └── TagHelperDocumentation.fr-FR.xml │ │ │ └── fr │ │ │ │ └── TagHelperDocumentation.fr.xml │ │ └── NotLocalized │ │ │ └── TagHelperDocumentation.xml │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Test.Common │ ├── Language │ │ ├── CodeGeneration │ │ │ └── TestCodeRenderingContext.cs │ │ ├── IntegrationTests │ │ │ ├── CompilationFailedException.cs │ │ │ ├── CompiledAssembly.cs │ │ │ ├── CompiledCSharpCode.cs │ │ │ ├── IntegrationTestBase.cs │ │ │ ├── IntermediateNodeSerializer.cs │ │ │ ├── IntermediateNodeVerifier.cs │ │ │ ├── IntermediateNodeWriter.cs │ │ │ ├── IntializeTestFileAttribute.cs │ │ │ ├── RazorDiagnosticSerializer.cs │ │ │ └── SourceMappingsSerializer.cs │ │ ├── Intermediate │ │ │ └── IntermediateNodeAssert.cs │ │ ├── Legacy │ │ │ ├── ClassifiedSpan │ │ │ │ ├── ClassifiedSpanSerializer.cs │ │ │ │ ├── ClassifiedSpanVerifier.cs │ │ │ │ └── ClassifiedSpanWriter.cs │ │ │ ├── IntializeTestFileAttribute.cs │ │ │ ├── ParserTestBase.cs │ │ │ ├── SyntaxNodeSerializer.cs │ │ │ ├── SyntaxNodeVerifier.cs │ │ │ ├── SyntaxNodeWalker.cs │ │ │ ├── SyntaxNodeWriter.cs │ │ │ └── TagHelperSpan │ │ │ │ ├── TagHelperSpanSerializer.cs │ │ │ │ ├── TagHelperSpanVerifier.cs │ │ │ │ └── TagHelperSpanWriter.cs │ │ ├── RazorEngineBuilderExtensions.cs │ │ ├── RazorProjectEngineBuilderExtensions.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.MvcShim.ClassLib │ └── Microsoft.AspNetCore.Razor.Test.MvcShim.ClassLib.csproj ├── Microsoft.AspNetCore.Razor.Test.MvcShim.Version1_X │ ├── 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.Test.MvcShim.Version1_X.csproj │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Test.MvcShim.Version2_X │ ├── 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.Test.MvcShim.Version2_X.csproj │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Test.MvcShim │ ├── Microsoft.AspNetCore.Components │ │ ├── Component.cs │ │ ├── IComponent.cs │ │ └── RenderTree │ │ │ └── RenderTreeBuilder.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.Test.MvcShim.csproj │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Test │ ├── Microsoft.AspNetCore.Razor.Test.csproj │ ├── TagHelpers │ │ ├── DefaultTagHelperContentTest.cs │ │ ├── NullHtmlEncoderTest.cs │ │ ├── ReadOnlyTagHelperAttributeListTest.cs │ │ ├── TagHelperAttributeListTest.cs │ │ ├── TagHelperContextTest.cs │ │ └── TagHelperOutputTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Tools.Test │ ├── CompositeRazorProjectFileSystemTest.cs │ ├── ConcurrentLruCacheTest.cs │ ├── DefaultExtensionAssemblyLoaderTest.cs │ ├── DefaultExtensionDependencyCheckerTest.cs │ ├── DefaultRequestDispatcherTest.cs │ ├── Infrastructure │ │ ├── ServerData.cs │ │ ├── ServerStats.cs │ │ ├── ServerUtilities.cs │ │ └── TestableEventBus.cs │ ├── LoaderTestResources.cs │ ├── MetadataCacheTest.cs │ ├── Microsoft.AspNetCore.Razor.Tools.Test.csproj │ ├── MvcShim.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServerCommandTest.cs │ ├── ServerLifecycleTest.cs │ ├── ServerProtocol │ │ └── ServerProtocolTest.cs │ ├── TempDirectory.cs │ └── TestDefaultExtensionAssemblyLoader.cs ├── Microsoft.CodeAnalysis.Razor.Test │ ├── CompilationTagHelperFeatureTest.cs │ ├── DefaultTagHelperDescriptorFactoryTest.cs │ ├── DefaultTagHelperDescriptorProviderTest.cs │ ├── Microsoft.CodeAnalysis.Razor.Test.csproj │ ├── TagHelperDescriptorFactoryTagHelpers.cs │ ├── TagHelperTypeVisitorTest.cs │ └── xunit.runner.json ├── Microsoft.CodeAnalysis.Razor.Workspaces.Test.Common │ ├── Microsoft.CodeAnalysis.Razor.Workspaces.Test.Common.csproj │ ├── TestLanguageServices.cs │ ├── TestServices.cs │ ├── TestWorkspace.cs │ └── TestWorkspaceServices.cs ├── Microsoft.CodeAnalysis.Razor.Workspaces.Test │ ├── DefaultRazorCompletionFactsServiceTest.cs │ ├── Microsoft.CodeAnalysis.Razor.Workspaces.Test.csproj │ ├── ProjectSystem │ │ ├── DefaultDocumentSnapshotTest.cs │ │ ├── DefaultProjectSnapshotTest.cs │ │ ├── DocumentStateTest.cs │ │ ├── GeneratedCodeContainerTest.cs │ │ ├── ProjectStateGeneratedOutputTest.cs │ │ └── ProjectStateTest.cs │ ├── RazorExcerptServiceTest.cs │ ├── RazorSpanMappingServiceTest.cs │ ├── Shared │ │ ├── TestImportProjectFeature.cs │ │ ├── TestProjectData.cs │ │ ├── TestProjectSnapshotManager.cs │ │ ├── TestProjectSnapshotProjectEngineFactory.cs │ │ ├── TestTagHelperResolver.cs │ │ └── WorkspaceTestBase.cs │ └── xunit.runner.json ├── Microsoft.NET.Sdk.Razor.Test │ ├── BuildVariables.cs │ ├── BuildVariables.cs.template │ ├── IntegrationTests │ │ ├── Assert.cs │ │ ├── BuildIncrementalismTest.cs │ │ ├── BuildIntegrationTest.cs │ │ ├── BuildIntrospectionTest.cs │ │ ├── BuildPerformanceTest.cs │ │ ├── BuildServerIntegrationTest.cs │ │ ├── BuildServerTestFixture.cs │ │ ├── BuildWithComponentsIntegrationTest.cs │ │ ├── ConfigurationMetadataIntegrationTest.cs │ │ ├── DesignTimeBuildIntegrationTest.cs │ │ ├── FIleThumbPrint.cs │ │ ├── InitializeTestProjectAttribute.cs │ │ ├── MSBuildIntegrationTestBase.cs │ │ ├── MSBuildProcessKind.cs │ │ ├── MSBuildProcessManager.cs │ │ ├── MSBuildResult.cs │ │ ├── PackIntegrationTest.cs │ │ ├── ProjectDirectory.cs │ │ ├── PublishIntegrationTest.cs │ │ ├── RazorCompileIntegrationTest.cs │ │ └── RazorGenerateIntegrationTest.cs │ ├── Microsoft.NET.Sdk.Razor.Test.csproj │ └── xunit.runner.json ├── Microsoft.VisualStudio.Editor.Razor.Test.Common │ ├── Microsoft.VisualStudio.Editor.Razor.Test.Common.csproj │ ├── PartialParserTestBase.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SingleThreadedForegroundDispatcher.cs │ ├── StringTextImage.cs │ ├── StringTextSnapshot.cs │ └── Xunit │ │ ├── ForegroundDispatcherTestBase.cs │ │ ├── ForegroundFactAttribute.cs │ │ ├── ForegroundFactDiscoverer.cs │ │ ├── ForegroundFactTestCase.cs │ │ ├── ForegroundTheoryAttribute.cs │ │ └── ForegroundTheoryDiscoverer.cs ├── Microsoft.VisualStudio.Editor.Razor.Test │ ├── BraceSmartIndenterIntegrationTest.cs │ ├── BraceSmartIndenterTest.cs │ ├── BraceSmartIndenterTestBase.cs │ ├── DefaultCodeDocumentProviderTest.cs │ ├── DefaultEditorSettingsManagerTest.cs │ ├── DefaultImportDocumentManagerIntegrationTest.cs │ ├── DefaultImportDocumentManagerTest.cs │ ├── DefaultProjectPathProviderTest.cs │ ├── DefaultProjectSnapshotProjectEngineFactoryTest.cs │ ├── DefaultRazorDocumentManagerTest.cs │ ├── DefaultRazorEditorFactoryServiceTest.cs │ ├── DefaultRazorIndentationFactsServiceTest.cs │ ├── DefaultRazorSyntaxFactsServiceTest.cs │ ├── DefaultTagHelperCompletionServiceTest.cs │ ├── DefaultTagHelperFactsServiceTest.cs │ ├── DefaultTextBufferCodeDocumentProviderTest.cs │ ├── DefaultTextBufferProviderTest.cs │ ├── DefaultVisualStudioDocumentTrackerTest.cs │ ├── DefaultVisualStudioRazorParserIntegrationTest.cs │ ├── DefaultVisualStudioRazorParserTest.cs │ ├── DefaultWorkspaceEditorSettingsTest.cs │ ├── Documents │ │ ├── EditorDocumentManagerBaseTest.cs │ │ ├── EditorDocumentManagerListenerTest.cs │ │ └── EditorDocumentTest.cs │ ├── Infrastructure │ │ ├── TestEdit.cs │ │ ├── TestTextBuffer.cs │ │ └── TestTextChange.cs │ ├── Microsoft.VisualStudio.Editor.Razor.Test.csproj │ ├── RazorDirectiveCompletionProviderTest.cs │ ├── RazorDirectiveCompletionSourceProviderTest.cs │ ├── RazorDirectiveCompletionSourceTest.cs │ ├── RazorSyntaxFactsServiceExtensionsTest.cs │ ├── RazorSyntaxTreePartialParserTest.cs │ ├── RazorTextViewConnectionListenerTest.cs │ ├── Shared │ │ └── ForegroundDispatcherWorkspaceTestBase.cs │ ├── TestFiles │ │ └── ParserTests │ │ │ ├── DefaultVisualStudioRazorParserIntegrationTest │ │ │ ├── AwaitPeriodInsertionAcceptedProvisionally.cspans.txt │ │ │ ├── AwaitPeriodInsertionAcceptedProvisionally.stree.txt │ │ │ ├── ImpExprAcceptsDCIInStatementBlock.cspans.txt │ │ │ ├── ImpExprAcceptsDCIInStatementBlock.stree.txt │ │ │ ├── ImpExprAcceptsDCIInStatementBlock_1.cspans.txt │ │ │ ├── ImpExprAcceptsDCIInStatementBlock_1.stree.txt │ │ │ ├── ImpExprAcceptsDCIInStmtBlkAfterIdentifiers.cspans.txt │ │ │ ├── ImpExprAcceptsDCIInStmtBlkAfterIdentifiers.stree.txt │ │ │ ├── ImpExprAcceptsDCIInStmtBlkAfterIdentifiers_1.cspans.txt │ │ │ ├── ImpExprAcceptsDCIInStmtBlkAfterIdentifiers_1.stree.txt │ │ │ ├── ImpExprAcceptsDCIInStmtBlkAfterIdentifiers_2.cspans.txt │ │ │ ├── ImpExprAcceptsDCIInStmtBlkAfterIdentifiers_2.stree.txt │ │ │ ├── ImpExprAcceptsIdentifierTypedAfterDotIfLastChangeProvisional.cspans.txt │ │ │ ├── ImpExprAcceptsIdentifierTypedAfterDotIfLastChangeProvisional.stree.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration.cspans.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration.stree.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_1.cspans.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_1.stree.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_2.cspans.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_2.stree.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_3.cspans.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_3.stree.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_4.cspans.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_4.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCI.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCI.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers_1.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers_1.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers_2.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers_2.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers_3.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers_3.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCI_1.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCI_1.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCI_2.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCI_2.stree.txt │ │ │ ├── ImpExprRejectsAcceptableChangeIfPrevWasProvisionallyAccepted.cspans.txt │ │ │ ├── ImpExprRejectsAcceptableChangeIfPrevWasProvisionallyAccepted.stree.txt │ │ │ ├── ImpExpr_AcceptsParenthesisAtEnd_SingleEdit.cspans.txt │ │ │ ├── ImpExpr_AcceptsParenthesisAtEnd_SingleEdit.stree.txt │ │ │ ├── ImpExpr_AcceptsParenthesisAtEnd_TwoEdits.cspans.txt │ │ │ └── ImpExpr_AcceptsParenthesisAtEnd_TwoEdits.stree.txt │ │ │ └── RazorSyntaxTreePartialParserTest │ │ │ ├── ImpExprAcceptsAdditionalIdentifierCharactersIfEndOfSpanIsIdentifier.cspans.txt │ │ │ ├── ImpExprAcceptsAdditionalIdentifierCharactersIfEndOfSpanIsIdentifier.stree.txt │ │ │ ├── ImpExprAcceptsAdditionalIdentifierStartCharactersIfEndOfSpanIsDot.cspans.txt │ │ │ ├── ImpExprAcceptsAdditionalIdentifierStartCharactersIfEndOfSpanIsDot.stree.txt │ │ │ ├── ImpExprAcceptsDeleteOfIdentifierPartsIfSomeOfIdentifierRemains.cspans.txt │ │ │ ├── ImpExprAcceptsDeleteOfIdentifierPartsIfSomeOfIdentifierRemains.stree.txt │ │ │ ├── ImpExprAcceptsDotAtEndOfNonWhitespaceCharacters.cspans.txt │ │ │ ├── ImpExprAcceptsDotAtEndOfNonWhitespaceCharacters.stree.txt │ │ │ ├── ImpExprAcceptsDotIfTrailingDotsAreAllowed.cspans.txt │ │ │ ├── ImpExprAcceptsDotIfTrailingDotsAreAllowed.stree.txt │ │ │ ├── ImpExprAcceptsIdentifierAfterDotAtEndOfNonWhitespaceCharacters.cspans.txt │ │ │ ├── ImpExprAcceptsIdentifierAfterDotAtEndOfNonWhitespaceCharacters.stree.txt │ │ │ ├── ImpExprAcceptsIdentifierExpansionAtEndOfNonWhitespaceCharacters.cspans.txt │ │ │ ├── ImpExprAcceptsIdentifierExpansionAtEndOfNonWhitespaceCharacters.stree.txt │ │ │ ├── ImpExprAcceptsInnerInsertions.cspans.txt │ │ │ ├── ImpExprAcceptsInnerInsertions.stree.txt │ │ │ ├── ImpExprAcceptsInnerInsertionsInStatementBlock.cspans.txt │ │ │ ├── ImpExprAcceptsInnerInsertionsInStatementBlock.stree.txt │ │ │ ├── ImpExprAcceptsMultipleInsertionIfItOnlyCausesIdentifierExpansion.cspans.txt │ │ │ ├── ImpExprAcceptsMultipleInsertionIfItOnlyCausesIdentifierExpansion.stree.txt │ │ │ ├── ImpExprAcceptsPrefixIdentifierReplacements_MultipleSymbols.cspans.txt │ │ │ ├── ImpExprAcceptsPrefixIdentifierReplacements_MultipleSymbols.stree.txt │ │ │ ├── ImpExprAcceptsPrefixIdentifierReplacements_SingleSymbol.cspans.txt │ │ │ ├── ImpExprAcceptsPrefixIdentifierReplacements_SingleSymbol.stree.txt │ │ │ ├── ImpExprAcceptsSuffixIdentifierReplacements_MultipleSymbols.cspans.txt │ │ │ ├── ImpExprAcceptsSuffixIdentifierReplacements_MultipleSymbols.stree.txt │ │ │ ├── ImpExprAcceptsSuffixIdentifierReplacements_SingleSymbol.cspans.txt │ │ │ ├── ImpExprAcceptsSuffixIdentifierReplacements_SingleSymbol.stree.txt │ │ │ ├── ImpExprAcceptsSurroundedIdentifierReplacements.cspans.txt │ │ │ ├── ImpExprAcceptsSurroundedIdentifierReplacements.stree.txt │ │ │ ├── ImpExprAcceptsWholeIdentifierReplacement.cspans.txt │ │ │ ├── ImpExprAcceptsWholeIdentifierReplacement.stree.txt │ │ │ ├── ImpExprProvisionalForMultipleInsertionIfItCausesIdentifierExpansionAndTrailingDot.cspans.txt │ │ │ ├── ImpExprProvisionalForMultipleInsertionIfItCausesIdentifierExpansionAndTrailingDot.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDeleteOfIdentifierPartsIfDotRemains.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDeleteOfIdentifierPartsIfDotRemains.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDotAfterIdentifierInMarkup.cspans.txt │ │ │ └── ImpExprProvisionallyAcceptsDotAfterIdentifierInMarkup.stree.txt │ ├── TextContentChangedEventArgsExtensionsTest.cs │ └── xunit.runner.json ├── Microsoft.VisualStudio.LanguageServices.Razor.Test │ ├── DefaultVisualStudioWorkspaceAccessorTest.cs │ ├── DocumentGenerator │ │ └── BackgroundDocumentGeneratorTest.cs │ ├── Documents │ │ └── VisualStudioFileChangeTrackerTest.cs │ ├── Microsoft.VisualStudio.LanguageServices.Razor.Test.csproj │ ├── OOPTagHelperResolverTest.cs │ ├── ProjectSystem │ │ ├── DefaultProjectSnapshotManagerTest.cs │ │ ├── DefaultRazorProjectHostTest.cs │ │ ├── FallbackRazorProjectHostTest.cs │ │ ├── ItemCollection.cs │ │ ├── PropertyCollection.cs │ │ ├── TestAssemblyReference.cs │ │ ├── TestProjectChangeDescription.cs │ │ ├── TestProjectRuleSnapshot.cs │ │ ├── TestProjectSystemServices.cs │ │ ├── TestPropertyData.cs │ │ └── WorkspaceProjectSnapshotChangeTriggerTest.cs │ ├── Serialization │ │ ├── ProjectSnapshotHandleSerializationTest.cs │ │ ├── RazorConfigurationSerializationTest.cs │ │ ├── RazorExtensionSerializationTest.cs │ │ └── TagHelperDescriptorSerializationTest.cs │ ├── VsSolutionUpdatesProjectSnapshotChangeTriggerTest.cs │ └── xunit.runner.json ├── Microsoft.VisualStudio.Mac.LanguageServices.Razor.Test │ ├── DefaultDotNetProjectHostTest.cs │ ├── DefaultRazorProjectHostTest.cs │ ├── DefaultVisualStudioMacWorkspaceAccessorTest.cs │ ├── Documents │ │ └── VisualStudioMacFileChangeTrackerTest.cs │ ├── FallbackRazorProjectHostTest.cs │ ├── Microsoft.VisualStudio.Mac.LanguageServices.Razor.Test.csproj │ ├── ProjectBuildChangeTriggerTest.cs │ └── xunit.runner.json ├── RazorPageGenerator.Test │ ├── RazorPageGenerator.Test.csproj │ ├── RazorPageGeneratorTest.cs │ ├── TestFiles │ │ └── Views │ │ │ ├── TestFile.js │ │ │ ├── TestView.Designer.expected.cs │ │ │ └── TestView.cshtml │ └── xunit.runner.json └── testapps │ ├── AppWithP2PReference │ ├── AppWithP2PReference.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ └── Views │ │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ ├── Error.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── ClassLibrary │ ├── Class1.cs │ ├── ClassLibrary.csproj │ └── Views │ │ ├── Shared │ │ └── _Layout.cshtml │ │ └── _ViewImports.cshtml │ ├── ClassLibrary2 │ ├── Class2.cs │ ├── ClassLibrary2.csproj │ └── Views │ │ ├── Shared │ │ └── Index.cshtml │ │ └── _ViewImports.cshtml │ ├── ClassLibraryMvc21 │ ├── Areas │ │ └── MyFeature │ │ │ └── Pages │ │ │ ├── Page1.cshtml │ │ │ └── Page1.cshtml.cs │ └── ClassLibraryMvc21.csproj │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── LargeProject │ ├── LargeProject.csproj │ └── Views │ │ ├── Home │ │ ├── View000.cshtml │ │ ├── View001.cshtml │ │ ├── View002.cshtml │ │ └── View003.cshtml │ │ └── Shared │ │ ├── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── LinkedDir │ ├── LinkedErrorFile.cshtml │ ├── LinkedFile.cshtml │ ├── LinkedFile2.cshtml │ └── LinkedFile3.cshtml │ ├── MvcWithComponents │ ├── Models │ │ └── ErrorViewModel.cs │ ├── MvcWithComponents.csproj │ ├── Program.cs │ ├── TestComponent.razor │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── NavMenu.razor │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── RazorTest.Introspection.targets │ ├── SimpleMvc │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── SimpleMvc.csproj │ ├── SimpleTagHelper.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ └── js │ │ └── SimpleMvc.js │ ├── SimpleMvc21 │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── SimpleMvc21.csproj │ └── Views │ │ ├── Home │ │ ├── About.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── SimpleMvcFSharp │ ├── Models │ │ └── ErrorViewModel.fs │ ├── Program.fs │ ├── SimpleMvcFSharp.fsproj │ └── Views │ │ ├── Home │ │ └── About.cshtml │ │ └── _ViewImports.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 ├── tooling ├── Microsoft.VisualStudio.Mac.RazorAddin │ ├── AddinMetadata.props │ ├── Microsoft.VisualStudio.Mac.RazorAddin.csproj │ ├── Properties │ │ └── _Manifest.addin.xml │ ├── RazorAddin.cs │ └── RazorProjectExtension.cs └── Microsoft.VisualStudio.RazorExtension │ ├── AboutDialogInfoAttribute.cs │ ├── Behaviors │ └── ItemSelectedBehavior.cs │ ├── DocumentInfo │ ├── RazorDocumentInfoViewModel.cs │ ├── RazorDocumentInfoWindow.cs │ ├── RazorDocumentInfoWindowCommand.cs │ ├── RazorDocumentInfoWindowControl.xaml │ └── RazorDocumentInfoWindowControl.xaml.cs │ ├── Microsoft.VisualStudio.RazorExtension.csproj │ ├── NotifyPropertyChanged.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RazorInfo │ ├── DirectiveCollectionViewModel.cs │ ├── DirectiveItemViewModel.cs │ ├── DocumentCollectionViewModel.cs │ ├── DocumentItemViewModel.cs │ ├── NullToEnabledConverter.cs │ ├── ProjectPropertyCollectionViewModel.cs │ ├── ProjectPropertyItemViewModel.cs │ ├── ProjectViewModel.cs │ ├── RazorInfoToolWindow.cs │ ├── RazorInfoToolWindowCommand.cs │ ├── RazorInfoToolWindowControl.xaml │ ├── RazorInfoToolWindowControl.xaml.cs │ ├── RazorInfoViewModel.cs │ ├── TagHelperCollectionViewModel.cs │ └── TagHelperItemViewModel.cs │ ├── RazorPackage.cs │ ├── RazorPackage.vsct │ ├── RelayCommand.cs │ ├── Resources │ ├── RazorInfoToolWindowCommand.png │ └── RazorPackage.ico │ ├── VSPackage.resx │ ├── WebConfiguration.png │ ├── razorLanguageService.servicehub.service.json │ ├── razorLanguageService64.servicehub.service.json │ └── source.extension.vsixmanifest └── version.props /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributing 2 | ====== 3 | 4 | Information on contributing to this repo is in the [Contributing Guide](https://github.com/aspnet/Home/blob/master/CONTRIBUTING.md) in the Home repo. 5 | -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Razor.Performance/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: BenchmarkDotNet.Attributes.AspNetCoreBenchmark] 2 | -------------------------------------------------------------------------------- /build/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/5439cfe540084edd673b7ed626f2ec9cf3f13b18/build/Key.snk -------------------------------------------------------------------------------- /build/buildpipeline/osx.groovy: -------------------------------------------------------------------------------- 1 | @Library('dotnet-ci') _ 2 | 3 | simpleNode('OSX10.12','latest') { 4 | stage ('Checking out source') { 5 | checkout scm 6 | } 7 | stage ('Build') { 8 | sh './build.sh --ci' 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /korebuild-lock.txt: -------------------------------------------------------------------------------- 1 | version:3.0.0-build-20181120.4 2 | commithash:84dcc6f0eb5455a3c0305d6d238926defb050889 3 | -------------------------------------------------------------------------------- /run.cmd: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | PowerShell -NoProfile -NoLogo -ExecutionPolicy unrestricted -Command "[System.Threading.Thread]::CurrentThread.CurrentCulture = ''; [System.Threading.Thread]::CurrentThread.CurrentUICulture = '';& '%~dp0run.ps1' %*; exit $LASTEXITCODE" 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InheritsViewModel.cshtml: -------------------------------------------------------------------------------- 1 | @inherits MyBasePageForViews 2 | @model MyModel 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InheritsWithViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model MyModel 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Inject.cshtml: -------------------------------------------------------------------------------- 1 | @inject MyApp MyPropertyName 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InjectWithModel.cshtml: -------------------------------------------------------------------------------- 1 | @model MyModel 2 | @inject MyApp MyPropertyName 3 | @inject MyService Html 4 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | @namespace Test. -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/MalformedPageDirective.cshtml: -------------------------------------------------------------------------------- 1 | @page "foo 2 | 3 |

About Us

4 |

We are awesome.

-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Model.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Collections.IEnumerable 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/MultipleModels.cshtml: -------------------------------------------------------------------------------- 1 | @model ThisShouldBeGenerated 2 | @model System.Collections.IEnumerable 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/PageWithNamespace.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @namespace Test.Namespace 3 |

Hi There!

4 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/RazorPageWithNoLeadingPageDirective.cshtml: -------------------------------------------------------------------------------- 1 | 
Some text here.
2 | @page 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/UsingDirectives.cshtml: -------------------------------------------------------------------------------- 1 | @using System.ComponentModel 2 | @using System.Collections 3 | @using System 4 | @using System -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ViewComponentTagHelper.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper "*, AppCode" 2 | @{ 3 | var foo = "Hello"; 4 | } 5 | 6 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ViewWithNamespace.cshtml: -------------------------------------------------------------------------------- 1 | @namespace Test.Namespace 2 |

Hi There!

3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @inject IHtmlHelper Helper -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method", 3 | "shadowCopy": false 4 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InheritsViewModel.cshtml: -------------------------------------------------------------------------------- 1 | @inherits MyBasePageForViews 2 | @model MyModel 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InheritsWithViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @model MyModel 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Inject.cshtml: -------------------------------------------------------------------------------- 1 | @inject MyApp MyPropertyName 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InjectWithModel.cshtml: -------------------------------------------------------------------------------- 1 | @model MyModel 2 | @inject MyApp MyPropertyName 3 | @inject MyService Html 4 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | @namespace Test. -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Model.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Collections.IEnumerable 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/MultipleModels.cshtml: -------------------------------------------------------------------------------- 1 | @model ThisShouldBeGenerated 2 | @model System.Collections.IEnumerable 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @inject IHtmlHelper Helper -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method", 3 | "shadowCopy": false 4 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InheritsViewModel.cshtml: -------------------------------------------------------------------------------- 1 | @inherits MyBasePageForViews 2 | @model MyModel 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InheritsWithViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model MyModel 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Inject.cshtml: -------------------------------------------------------------------------------- 1 | @inject MyApp MyPropertyName 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InjectWithModel.cshtml: -------------------------------------------------------------------------------- 1 | @model MyModel 2 | @inject MyApp MyPropertyName 3 | @inject MyService Html 4 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | @namespace Test. -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/MalformedPageDirective.cshtml: -------------------------------------------------------------------------------- 1 | @page "foo 2 | 3 |

About Us

4 |

We are awesome.

-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Model.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Collections.IEnumerable 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/MultipleModels.cshtml: -------------------------------------------------------------------------------- 1 | @model ThisShouldBeGenerated 2 | @model System.Collections.IEnumerable 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/PageWithNamespace.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @namespace Test.Namespace 3 |

Hi There!

4 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/RazorPageWithNoLeadingPageDirective.cshtml: -------------------------------------------------------------------------------- 1 | 
Some text here.
2 | @page 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/UsingDirectives.cshtml: -------------------------------------------------------------------------------- 1 | @using System.ComponentModel 2 | @using System.Collections 3 | @using System 4 | @using System -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ViewWithNamespace.cshtml: -------------------------------------------------------------------------------- 1 | @namespace Test.Namespace 2 |

Hi There!

3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @inject IHtmlHelper Helper -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method", 3 | "shadowCopy": false 4 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/Home.cshtml: -------------------------------------------------------------------------------- 1 | home-content -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/Views/About/About.cshtml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/Views/Home/Index.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/Views/Home/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/BasicIntegrationTest/CustomDirective.cshtml: -------------------------------------------------------------------------------- 1 | @test -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/BasicIntegrationTest/Empty.cshtml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/BasicIntegrationTest/HelloWorld.cshtml: -------------------------------------------------------------------------------- 1 | Hello, World! -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AddTagHelperDirective.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper "*, TestAssembly" 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/CodeBlock.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | for(int i = 1; i <= 10; i++) { 3 | Output.Write("

Hello from C#, #" + i.ToString() + "

"); 4 | } 5 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/CodeBlockAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | @{ -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/CodeBlockWithTextElement.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | var a = 1; foo 3 | var b = 1; bar @(a+b) 4 | } 5 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/DuplicateTargetTagHelper.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper "*, TestAssembly" 2 | 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyCodeBlock.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @{} -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyExplicitExpression.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @() -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyImplicitExpression.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @! -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyImplicitExpressionInCode.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | @ 3 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ExplicitExpression.cshtml: -------------------------------------------------------------------------------- 1 | 1 + 1 = @(1+1) -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ExplicitExpressionAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @( -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ExplicitExpressionWithMarkup.cshtml: -------------------------------------------------------------------------------- 1 | 
@(@
-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/FunctionsBlockMinimal.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | @functions{ 4 | string foo(string input) { 5 | return input + "!"; 6 | } 7 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HiddenSpansInCode.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | @@Da 3 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HtmlCommentWithQuote_Double.cshtml: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HtmlCommentWithQuote_Single.cshtml: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ImplicitExpression.cshtml: -------------------------------------------------------------------------------- 1 | @for(int i = 1; i <= 10; i++) { 2 |

This is item #@i

3 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ImplicitExpressionAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @ -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/IncompleteTagHelper.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper "*, TestAssembly" 2 | 3 |

# }" /> 3 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/MarkupInCodeBlock.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | for(int i = 1; i <= 10; i++) { 3 |

Hello from C#, #@(i.ToString())

4 | } 5 | } 6 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/NestedCodeBlocks.cshtml: -------------------------------------------------------------------------------- 1 | @if(foo) { 2 | @if(bar) { 3 | } 4 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/OpenedIf.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | @if (true) { 4 | 5 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ParserError.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | /* 3 | int i =10; 4 | int j =20; 5 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/RemoveTagHelperDirective.cshtml: -------------------------------------------------------------------------------- 1 | @removeTagHelper *, TestAssembly 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/SimpleTagHelpers.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper *, TestAssembly 2 |

Hola

3 |
4 | 5 |
-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/SimpleUnspacedIf.cshtml: -------------------------------------------------------------------------------- 1 | @if (true) 2 | { 3 |
4 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/SingleTagHelper.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper "*, TestAssembly" 2 | 3 |

Body of Tag

-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/SingleTagHelperWithNewlineBeforeAttributes.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper "*, TestAssembly" 2 | 3 |

Body of Tag

-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/TagHelpersWithBoundAttributes.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper *, TestAssembly 2 |
3 | 4 |
-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/TagHelpersWithPrefix.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper *, TestAssembly 2 | @tagHelperPrefix cool: 3 |
4 | 5 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/UnfinishedExpressionInCode.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | @DateTime. 3 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/ComponentIntegrationTest/BasicTest.razor: -------------------------------------------------------------------------------- 1 | Hello world 2 | 3 | 4 | @functions { 5 | string SomeProperty { get; set; } 6 | } 7 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/ExtensibleDirectiveTest/NamespaceToken.cshtml: -------------------------------------------------------------------------------- 1 | @custom System.Globalization -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/HtmlAttributeIntegrationTest/HtmlWithConditionalAttribute.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | " -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/HtmlAttributeIntegrationTest/HtmlWithDataDashAttribute.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | " -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/RazorTemplateEngineIntegrationTest/GenerateCodeWithBaseType.cshtml: -------------------------------------------------------------------------------- 1 | 

Hello world!

-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/RazorTemplateEngineIntegrationTest/GenerateCodeWithConfigureClass.cshtml: -------------------------------------------------------------------------------- 1 | 

Hello world!

-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/RazorTemplateEngineIntegrationTest/GenerateCodeWithDefaults.cshtml: -------------------------------------------------------------------------------- 1 | 

Hello world!

-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/RazorTemplateEngineIntegrationTest/GenerateCodeWithSetNamespace.cshtml: -------------------------------------------------------------------------------- 1 | 

Hello world!

-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/SuppressPrimaryMethodBodyIntegrationTest/BasicTest.razor: -------------------------------------------------------------------------------- 1 | Hello world 2 | 3 | 4 | @functions { 5 | string SomeProperty { get; set; } 6 | } 7 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/TagHelpersIntegrationTest/NestedTagHelpers.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper *, TestAssembly 2 |

Hola

3 |
4 | 5 |
-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/TagHelpersIntegrationTest/SimpleTagHelpers.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper *, TestAssembly 2 |

Hola

3 |
4 | 5 |
-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/TagHelpersIntegrationTest/TagHelpersWithBoundAttributes.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper *, TestAssembly 2 |
3 | 4 |
-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/AcceptsElseIfWithNoCondition.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [106] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [106] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/AllowsEmptyBlockStatement.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [13] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [13] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/BalancingBracketsIgnoresStringLiteralCharactersAndBrackets.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [47] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [47] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/BalancingBracketsIgnoresStringLiteralCharactersAndBracketsInsideBlockComments.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [54] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [54] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/CapturesNewlineAfterUsing.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [11] ) (Accepts:AnyExceptNewline) - Parent: Directive block at (0:0,0 [11] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/CorrectlyParsesDoWhileBlock.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [40] ) (Accepts:None) - Parent: Statement block at (0:0,0 [40] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/CorrectlyParsesDoWhileBlockMissingSemicolon.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [39] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [39] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/CorrectlyParsesDoWhileBlockMissingWhileClauseEntirely.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [21] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [21] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/CorrectlyParsesDoWhileBlockMissingWhileCondition.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [27] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [27] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/CorrectlyParsesDoWhileBlockMissingWhileConditionWithSemicolon.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [28] ) (Accepts:None) - Parent: Statement block at (0:0,0 [28] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/DoesNotAllowMultipleFinallyBlocks.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [55] ) (Accepts:None) - Parent: Statement block at (0:0,0 [55] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/DoesNotParseOnSwitchCharacterNotFollowedByOpenAngleOrColon.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [30] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [30] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/DoesntCaptureWhitespaceAfterUsing.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [9] ) (Accepts:AnyExceptNewline) - Parent: Directive block at (0:0,0 [9] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/HasErrorsIfNamespaceAliasMissingSemicolon.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [29] ) (Accepts:AnyExceptNewline) - Parent: Directive block at (0:0,0 [29] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/HasErrorsIfNamespaceImportMissingSemicolon.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [17] ) (Accepts:AnyExceptNewline) - Parent: Directive block at (0:0,0 [17] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/ParsesElseIfBranchesOfIfStatement.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [180] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [180] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/ParsesMultipleElseIfBranchesOfIfStatement.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [459] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [459] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/ParsesMultipleElseIfBranchesOfIfStatementFollowedByOneElseBranch.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [313] ) (Accepts:None) - Parent: Statement block at (0:0,0 [313] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/ParsesNamespaceAliasWithSemicolonForUsingKeywordIfIsInValidFormat.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [28] ) (Accepts:AnyExceptNewline) - Parent: Directive block at (0:0,0 [28] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/ParsesNamespaceImportWithSemicolonForUsingKeywordIfIsInValidFormat.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [18] ) (Accepts:AnyExceptNewline) - Parent: Directive block at (0:0,0 [18] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SkipsExprThenBalancesBracesIfFirstIdentifierIsForKeyword.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [82] ) (Accepts:None) - Parent: Statement block at (0:0,0 [82] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SkipsExprThenBalancesBracesIfFirstIdentifierIsForeachKeyword.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [86] ) (Accepts:None) - Parent: Statement block at (0:0,0 [86] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SkipsExprThenBalancesBracesIfFirstIdentifierIsIfKeywordWithNoElseBranches.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [81] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [81] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SkipsExprThenBalancesBracesIfFirstIdentifierIsSwitchKeyword.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [161] ) (Accepts:None) - Parent: Statement block at (0:0,0 [161] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SkipsExprThenBalancesBracesIfFirstIdentifierIsWhileKeyword.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [84] ) (Accepts:None) - Parent: Statement block at (0:0,0 [84] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SkipsExprThenBalancesIfFirstIdentifierIsUsingFollowedByParen.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [84] ) (Accepts:None) - Parent: Statement block at (0:0,0 [84] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/StopsParsingCatchClausesAfterFinallyBlock.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [55] ) (Accepts:None) - Parent: Statement block at (0:0,0 [55] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/StopsParsingCodeAfterElseBranch.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [220] ) (Accepts:None) - Parent: Statement block at (0:0,0 [220] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/StopsParsingIfIfStatementNotFollowedByElse.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [87] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [87] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsBlockCommentBetweenCatchAndFinallyClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [75] ) (Accepts:None) - Parent: Statement block at (0:0,0 [75] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsBlockCommentBetweenDoAndWhileClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [54] ) (Accepts:None) - Parent: Statement block at (0:0,0 [54] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsBlockCommentBetweenElseIfAndElseClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [78] ) (Accepts:None) - Parent: Statement block at (0:0,0 [78] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsBlockCommentBetweenIfAndElseClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [54] ) (Accepts:None) - Parent: Statement block at (0:0,0 [54] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsBlockCommentBetweenIfAndElseIfClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [62] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [62] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsBlockCommentBetweenTryAndCatchClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [56] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [56] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsBlockCommentBetweenTryAndFinallyClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [53] ) (Accepts:None) - Parent: Statement block at (0:0,0 [53] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsExceptionLessCatchClauses.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [53] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [53] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsLineCommentBetweenCatchAndFinallyClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [72] ) (Accepts:None) - Parent: Statement block at (0:0,0 [72] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsLineCommentBetweenDoAndWhileClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [51] ) (Accepts:None) - Parent: Statement block at (0:0,0 [51] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsLineCommentBetweenElseIfAndElseClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [75] ) (Accepts:None) - Parent: Statement block at (0:0,0 [75] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsLineCommentBetweenIfAndElseClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [51] ) (Accepts:None) - Parent: Statement block at (0:0,0 [51] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsLineCommentBetweenIfAndElseIfClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [59] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [59] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsLineCommentBetweenTryAndCatchClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [53] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [53] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsLineCommentBetweenTryAndFinallyClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [50] ) (Accepts:None) - Parent: Statement block at (0:0,0 [50] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsTryStatementWithFinallyClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [55] ) (Accepts:None) - Parent: Statement block at (0:0,0 [55] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsTryStatementWithMultipleCatchClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [148] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [148] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsTryStatementWithNoAdditionalClauses.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [25] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [25] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsTryStatementWithOneCatchClause.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [66] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [66] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/SupportsUsingsNestedWithinOtherBlocks.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [96] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [96] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/TerminatesBlockCommentAtEndOfFile.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [38] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [38] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/TerminatesParenBalancingAtEOF.diag.txt: -------------------------------------------------------------------------------- 1 | (1,9): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/TerminatesSingleLineCommentAtEndOfFile.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [38] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [38] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/TerminatesSingleSlashAtEndOfFile.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [37] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [37] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/TerminatesUsingKeywordAtEOFAndOutputsFileCodeBlock.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [25] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [25] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpBlockTest/ThenBalancesBracesIfFirstIdentifierIsLockKeyword.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [44] ) (Accepts:None) - Parent: Statement block at (0:0,0 [44] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/CapturesWhitespaceToEOLInInvalidUsingStmtAndTreatsAsFileCode.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [17] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [17] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/CorrectlyHandlesInCorrectTransitionsIfImplicitExpressionParensUnclosed.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [7] ) (Accepts:Any) - Parent: Expression block at (0:0,0 [7] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/CorrectlyHandlesInCorrectTransitionsIfImplicitExpressionParensUnclosed.diag.txt: -------------------------------------------------------------------------------- 1 | (1,5): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/CorrectlyRecoversFromMissingCloseParenInExpressionWithinCode.diag.txt: -------------------------------------------------------------------------------- 1 | (1,15): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/HandlesQuotesAfterTransition.diag.txt: -------------------------------------------------------------------------------- 1 | (1,2): Error RZ1005: """ is not valid at the start of a code block. Only identifiers, keywords, comments, "(" and "{" are valid. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/IncludesUnexpectedCharacterInSingleStatementControlFlowStatementError.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [27] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [27] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfCatchBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [70] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [70] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfDoBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [47] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [47] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfElseBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [68] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [68] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfElseIfBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [71] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [71] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfFinallyBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [67] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [67] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfForBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [54] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [54] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfForeachBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [58] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [58] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfIfBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [53] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [53] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfLockBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [55] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [55] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfSwitchBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [57] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [57] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfTryBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [48] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [48] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfUsingBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [56] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [56] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ReportsErrorIfWhileBlockUnterminatedAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [56] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [56] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ResumesIfStatementAfterOpenParen.diag.txt: -------------------------------------------------------------------------------- 1 | (1,3): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ShouldReportErrorAndTerminateAtEOFIfBracketInImplicitExpressionUnclosed.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [22] ) (Accepts:Any) - Parent: Expression block at (0:0,0 [22] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ShouldReportErrorAndTerminateAtEOFIfBracketInImplicitExpressionUnclosed.diag.txt: -------------------------------------------------------------------------------- 1 | (1,4): Error RZ1027: An opening "[" is missing the corresponding closing "]". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ShouldReportErrorAndTerminateAtEOFIfParenInImplicitExprUnclosed.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [22] ) (Accepts:Any) - Parent: Expression block at (0:0,0 [22] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ShouldReportErrorAndTerminateAtEOFIfParenInImplicitExprUnclosed.diag.txt: -------------------------------------------------------------------------------- 1 | (1,4): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ShouldReportErrorAndTerminateAtMarkupIfBracketInImplicitExprUnclosed.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [19] ) (Accepts:Any) - Parent: Expression block at (0:0,0 [19] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ShouldReportErrorAndTerminateAtMarkupIfBracketInImplicitExprUnclosed.diag.txt: -------------------------------------------------------------------------------- 1 | (1,4): Error RZ1027: An opening "[" is missing the corresponding closing "]". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ShouldReportErrorAndTerminateAtMarkupIfParenInImplicitExpressionUnclosed.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [19] ) (Accepts:Any) - Parent: Expression block at (0:0,0 [19] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/ShouldReportErrorAndTerminateAtMarkupIfParenInImplicitExpressionUnclosed.diag.txt: -------------------------------------------------------------------------------- 1 | (1,4): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/TerminatesForeachBlockAtEOLWhenRecoveringFromMissingCloseParen.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [17] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [17] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/TerminatesForeachBlockAtEOLWhenRecoveringFromMissingCloseParen.diag.txt: -------------------------------------------------------------------------------- 1 | (1,8): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/TerminatesIfBlockAtEOLWhenRecoveringFromMissingCloseParen.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [12] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [12] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/TerminatesIfBlockAtEOLWhenRecoveringFromMissingCloseParen.diag.txt: -------------------------------------------------------------------------------- 1 | (1,3): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/TerminatesNormalCSharpStringsAtEOLIfEndQuoteMissing.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [41] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [41] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/TerminatesNormalStringAtEndOfFile.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [45] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [45] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/TerminatesUsingBlockAtEOLWhenRecoveringFromMissingCloseParen.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [15] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [15] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/TerminatesUsingBlockAtEOLWhenRecoveringFromMissingCloseParen.diag.txt: -------------------------------------------------------------------------------- 1 | (1,6): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/TerminatesVerbatimStringAtEndOfFile.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [60] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [60] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/TerminatesWhileClauseInDoStmtAtEOLWhenRecoveringFromMissingCloseParen.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [22] ) (Accepts:Any) - Parent: Statement block at (0:0,0 [22] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/TerminatesWhileClauseInDoStmtAtEOLWhenRecoveringFromMissingCloseParen.diag.txt: -------------------------------------------------------------------------------- 1 | (1,13): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpErrorTest/WithHelperDirectiveProducesError.diag.txt: -------------------------------------------------------------------------------- 1 | (1,2): Error RZ1002: The helper directive is not supported. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpImplicitExpressionTest/ParsesNullConditionalOperatorImplicitExpression_Bracket11.diag.txt: -------------------------------------------------------------------------------- 1 | (1,12): Error RZ1027: An opening "[" is missing the corresponding closing "]". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpImplicitExpressionTest/ParsesNullConditionalOperatorImplicitExpression_Bracket3.diag.txt: -------------------------------------------------------------------------------- 1 | (1,6): Error RZ1027: An opening "[" is missing the corresponding closing "]". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpImplicitExpressionTest/ParsesNullConditionalOperatorImplicitExpression_Bracket5.diag.txt: -------------------------------------------------------------------------------- 1 | (1,6): Error RZ1027: An opening "[" is missing the corresponding closing "]". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpImplicitExpressionTest/ParsesNullConditionalOperatorImplicitExpression_Bracket7.diag.txt: -------------------------------------------------------------------------------- 1 | (1,6): Error RZ1027: An opening "[" is missing the corresponding closing "]". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpImplicitExpressionTest/ParsesNullConditionalOperatorImplicitExpression_Bracket8.diag.txt: -------------------------------------------------------------------------------- 1 | (1,6): Error RZ1027: An opening "[" is missing the corresponding closing "]". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpImplicitExpressionTest/StopsBalancingParenthesesAtEOF.diag.txt: -------------------------------------------------------------------------------- 1 | (1,5): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpRazorCommentsTest/RazorCommentInImplicitExpressionMethodCall.diag.txt: -------------------------------------------------------------------------------- 1 | (1,5): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpReservedWordsTest/ReservedWord.cspans.txt: -------------------------------------------------------------------------------- 1 | MetaCode span at (0:0,0 [9] ) (Accepts:None) - Parent: Directive block at (0:0,0 [9] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpReservedWordsTest/ReservedWord.diag.txt: -------------------------------------------------------------------------------- 1 | (1,1): Error RZ1007: "namespace" is a reserved word and cannot be used in implicit expressions. An explicit expression ("@()") must be used. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpReservedWordsTest/ReservedWordIsCaseSensitive.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (0:0,0 [9] ) (Accepts:NonWhitespace) - Parent: Expression block at (0:0,0 [9] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/CSharpStatementTest/ExceptionFilterError_TryCatchWhen_InCompleteCondition.diag.txt: -------------------------------------------------------------------------------- 1 | (1,46): Error RZ1027: An opening "(" is missing the corresponding closing ")". 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlBlockTest/AcceptsEmptyTextTag.cspans.txt: -------------------------------------------------------------------------------- 1 | Transition span at (0:0,0 [7] ) (Accepts:None) - Parent: Tag block at (0:0,0 [7] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlBlockTest/StopsParsingMidEmptyTagIfEOFReached.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [4] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [4] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlBlockTest/TagWithoutCloseAngleDoesNotTerminateBlock.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [28] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [28] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlBlockTest/TerminatesAtEOF.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [5] ) (Accepts:None) - Parent: Tag block at (0:0,0 [5] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlBlockTest/TerminatesAtEOF.diag.txt: -------------------------------------------------------------------------------- 1 | (1,2): Error RZ1025: The "foo" element was not closed. All elements must be either self-closing or have a matching end tag. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlBlockTest/TerminatesAtEOFWhenParsingComment.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [9] ) (Accepts:None) - Parent: Markup block at (0:0,0 [9] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlBlockTest/TreatsMalformedTagsAsContent.diag.txt: -------------------------------------------------------------------------------- 1 | (1,2): Error RZ1025: The "foo" element was not closed. All elements must be either self-closing or have a matching end tag. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlBlockTest/WithSelfClosingTagJustEmitsTag.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [7] ) (Accepts:None) - Parent: Tag block at (0:0,0 [7] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlDocumentTest/OutputsEmptyBlockWithEmptyMarkupSpanIfContentIsEmptyString.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [0] ) (Accepts:Any) - Parent: Markup block at (0:0,0 [0] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlDocumentTest/OutputsWhitespaceOnlyContentAsSingleWhitespaceMarkupSpan.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [10] ) (Accepts:Any) - Parent: Markup block at (0:0,0 [10] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlDocumentTest/ParseDocumentDoesNotSwitchToCodeOnEmailAddressInText.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [21] ) (Accepts:Any) - Parent: Markup block at (0:0,0 [21] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlDocumentTest/ParsesWholeContentAsOneSpanIfNoSwapCharacterEncountered.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [7] ) (Accepts:Any) - Parent: Markup block at (0:0,0 [7] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlErrorTest/ThrowsErrorIfEndTextTagContainsTextAfterName.diag.txt: -------------------------------------------------------------------------------- 1 | (1,9): Error RZ1023: "" and "" tags cannot contain attributes. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlErrorTest/ThrowsErrorIfStartTextTagContainsTextAfterName.diag.txt: -------------------------------------------------------------------------------- 1 | (1,2): Error RZ1023: "" and "" tags cannot contain attributes. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlErrorTest/ThrowsExceptionIfBlockDoesNotStartWithTag.stree.txt: -------------------------------------------------------------------------------- 1 | MarkupBlock - [0..0)::0 - [] 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/HtmlTagsTest/EmptyTagNestsLikeNormalTag.diag.txt: -------------------------------------------------------------------------------- 1 | (1,2): Error RZ1025: The "p" element was not closed. All elements must be either self-closing or have a matching end tag. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/AllowsCompatibleTagStructures1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [15] ) - InputTagHelper1 - InputTagHelper2 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/AllowsCompatibleTagStructures2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [9] ) - InputTagHelper1 - InputTagHelper2 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/AllowsCompatibleTagStructures3.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (13:0,13 [4] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [19] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/AllowsCompatibleTagStructures3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [19] ) - InputTagHelper1 - InputTagHelper2 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/AllowsCompatibleTagStructures5.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (13:0,13 [4] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [27] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/AllowsCompatibleTagStructures5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [27] ) - InputTagHelper1 - InputTagHelper2 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/AllowsCompatibleTagStructures6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [9] ) - InputTagHelper1 - InputTagHelper2 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/AllowsCompatibleTagStructures7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [9] ) - InputTagHelper1 - InputTagHelper2 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleSymbolBoundAttributes1.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (18:0,18 [5] ) (Accepts:AnyExceptNewline) - Parent: Tag block at (0:0,0 [30] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleSymbolBoundAttributes1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [30] ) - CatchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleSymbolBoundAttributes2.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (20:0,20 [5] ) (Accepts:AnyExceptNewline) - Parent: Tag block at (0:0,0 [32] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleSymbolBoundAttributes2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [32] ) - CatchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleSymbolBoundAttributes3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [55] ) - CatchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleSymbolBoundAttributes4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [56] ) - CatchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleSymbolBoundAttributes5.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (28:0,28 [5] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [46] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleSymbolBoundAttributes5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [46] ) - CatchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleSymbolBoundAttributes6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [33] ) - CatchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleSymbolBoundAttributes7.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (19:0,19 [5] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [32] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleSymbolBoundAttributes7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [32] ) - CatchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleWithoutEndTagTagStructure1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [7] ) - InputTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleWithoutEndTagTagStructure2.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (13:0,13 [4] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [19] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleWithoutEndTagTagStructure2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [19] ) - InputTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleWithoutEndTagTagStructure3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [7] ) - InputTagHelper 2 | TagHelper span at (7:0,7 [7] ) - InputTagHelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleWithoutEndTagTagStructure4.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (13:0,13 [4] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [19] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleWithoutEndTagTagStructure4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [19] ) - InputTagHelper 2 | TagHelper span at (19:0,19 [7] ) - InputTagHelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CanHandleWithoutEndTagTagStructure5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (5:0,5 [7] ) - InputTagHelper 2 | TagHelper span at (12:0,12 [7] ) - InputTagHelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes1.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (13:0,13 [0] ) (Accepts:AnyExceptNewline) - Parent: Tag block at (0:0,0 [17] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [17] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes10.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (13:0,13 [0] ) (Accepts:AnyExceptNewline) - Parent: Tag block at (0:0,0 [17] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes10.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [17] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes11.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [29] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes12.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [32] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes13.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [28] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes14.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [30] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes2.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (13:0,13 [8] ) (Accepts:AnyExceptNewline) - Parent: Tag block at (0:0,0 [25] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [25] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes3.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (13:0,13 [4] ) (Accepts:AnyExceptNewline) - Parent: Tag block at (0:0,0 [21] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [21] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [27] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [30] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [29] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [23] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes8.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [25] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForEmptyTagHelperBoundAttributes9.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [46] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelper1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [2] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelper2.diag.txt: -------------------------------------------------------------------------------- 1 | (1,6): Error RZ1035: Missing close angle for tag helper 'p'. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelper2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [6] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelper3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [10] ) - ptaghelper 2 | TagHelper span at (3:0,3 [7] ) - strongtaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelper4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [11] ) - strongtaghelper 2 | TagHelper span at (8:0,8 [3] ) - ptaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelper5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [16] ) - strongtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelper6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (13:0,13 [3] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelper7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [14] ) - strongtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelper8.diag.txt: -------------------------------------------------------------------------------- 1 | (1,15): Error RZ1034: Found a malformed 'p' tag helper. Tag helpers must have a start and end tag or be self closing. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelper8.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (4:0,4 [21] ) - strongtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes1.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (10:0,10 [0] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [10] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [10] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes10.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (9:0,9 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [31] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes10.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [31] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes11.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [31] ) - ptaghelper 2 | TagHelper span at (23:0,23 [8] ) - strongtaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes12.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [28] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes13.diag.txt: -------------------------------------------------------------------------------- 1 | (1,4): Error RZ1031: The tag helper 'p' must not have C# in the element's attribute declaration area. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes13.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [33] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes14.diag.txt: -------------------------------------------------------------------------------- 1 | (1,4): Error RZ1031: The tag helper 'p' must not have C# in the element's attribute declaration area. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes14.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [27] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes15.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [28] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes16.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [15] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes17.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [21] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes18.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [33] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes19.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (9:0,9 [4] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [38] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes19.diag.txt: -------------------------------------------------------------------------------- 1 | (1,14): Error RZ1030: TagHelper attributes must be well-formed. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes19.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [38] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes2.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (8:0,8 [5] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [24] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [24] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [23] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [23] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes5.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (7:0,7 [5] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [13] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [13] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes6.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (8:0,8 [6] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [14] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [14] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [20] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes8.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [18] ) - ptaghelper 2 | TagHelper span at (10:0,10 [8] ) - strongtaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes9.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (9:0,9 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [25] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesErrorForMalformedTagHelpersWithAttributes9.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [25] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes1.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (13:0,13 [2] ) (Accepts:AnyExceptNewline) - Parent: Tag block at (0:0,0 [19] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [19] ) - PersonTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes10.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [73] ) - PersonTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes11.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [77] ) - PersonTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes2.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (18:0,18 [12] ) (Accepts:AnyExceptNewline) - Parent: Tag block at (0:0,0 [34] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [34] ) - PersonTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [35] ) - PersonTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [36] ) - PersonTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes5.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (14:0,14 [4] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [22] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [22] ) - PersonTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [37] ) - PersonTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [88] ) - PersonTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes8.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [70] ) - PersonTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/CreatesMarkupCodeSpansForNonStringTagHelperAttributes9.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [73] ) - PersonTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/FeatureDisabled_AddsErrorForMinimizedBooleanBoundAttributes.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [37] ) - InputTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Block1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [39] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Block2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [31] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Block3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [46] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Block4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [46] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Block5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [53] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Block6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [82] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Block7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [60] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Document1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [39] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Document2.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (22:0,22 [5] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [31] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Document2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [31] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Document3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [46] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Document4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [46] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Document5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [53] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Document6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [82] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/GeneratesExpectedOutputForUnboundDataDashAttributes_Document7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [60] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_AllowsInvalidHtml1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [9] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_AllowsInvalidHtml10.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [42] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_AllowsInvalidHtml2.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [1] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [1] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_AllowsInvalidHtml2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (1:0,1 [5] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_AllowsInvalidHtml4.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [7] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [7] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_AllowsInvalidHtml4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (7:0,7 [5] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_AllowsInvalidHtml5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (14:0,14 [5] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_AllowsInvalidHtml6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (3:0,3 [9] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_AllowsInvalidHtml7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (3:0,3 [17] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_AllowsInvalidHtml8.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (3:0,3 [30] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_AllowsInvalidHtml9.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (9:0,9 [32] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [51] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [153] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [62] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [164] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [122] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [20] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [32] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [77] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [66] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [77] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [7] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks2.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (3:0,3 [11] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [18] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [18] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [56] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesScriptTagHelpers1.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (8:0,8 [14] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [31] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesScriptTagHelpers1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [31] ) - scripttaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesScriptTagHelpers2.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (8:0,8 [23] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [40] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesScriptTagHelpers2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [40] ) - scripttaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesScriptTagHelpers5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [41] ) - scripttaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesScriptTagHelpers6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [67] ) - ptaghelper 2 | TagHelper span at (9:0,9 [48] ) - scripttaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesScriptTagHelpers7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [77] ) - ptaghelper 2 | TagHelper span at (9:0,9 [58] ) - scripttaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [36] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [55] ) - ptaghelper 2 | TagHelper span at (9:0,9 [36] ) - ptaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (5:0,5 [17] ) - ptaghelper 2 | TagHelper span at (23:0,23 [24] ) - ptaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [38] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [49] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [99] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [56] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [67] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [69] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [117] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsEmptyAttributeTagHelpers1.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (10:0,10 [0] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [16] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsEmptyAttributeTagHelpers1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [16] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsEmptyAttributeTagHelpers2.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (10:0,10 [0] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [16] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsEmptyAttributeTagHelpers2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [16] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsEmptyAttributeTagHelpers3.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (9:0,9 [0] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [14] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsEmptyAttributeTagHelpers3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [14] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsEmptyAttributeTagHelpers4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [33] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsEmptyAttributeTagHelpers5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [31] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [26] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block10.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [25] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block11.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [29] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block12.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [29] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block13.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [31] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block14.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [29] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block15.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [43] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block16.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [48] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block17.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [30] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block18.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [67] ) - InputTagHelper1 - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block19.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [43] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [20] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block20.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [38] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block21.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [32] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block22.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [38] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block23.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [32] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block24.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [43] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block25.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [43] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block26.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [40] ) - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block27.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [29] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block28.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [40] ) - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block29.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [29] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [31] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block30.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [54] ) - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block31.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [43] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block32.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [126] ) - InputTagHelper1 - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block33.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [101] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [28] ) - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [17] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [23] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [27] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block8.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [21] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Block9.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [23] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [26] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document10.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [25] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document11.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [29] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document12.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (25:0,25 [0] ) (Accepts:AnyExceptNewline) - Parent: Tag block at (0:0,0 [29] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document12.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [29] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document13.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (28:0,28 [0] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [31] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document13.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [31] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document14.cspans.txt: -------------------------------------------------------------------------------- 1 | Code span at (25:0,25 [1] ) (Accepts:AnyExceptNewline) - Parent: Tag block at (0:0,0 [29] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document14.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [29] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document15.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [43] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document16.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [48] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document17.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [30] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document18.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [67] ) - InputTagHelper1 - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document19.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [43] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [20] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document20.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (31:0,31 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [38] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document20.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [38] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document21.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (23:0,23 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [32] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document21.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [32] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document22.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (14:0,14 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [38] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document22.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [38] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document23.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (10:0,10 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [32] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document23.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [32] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document24.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (36:0,36 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [43] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document24.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [43] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document25.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (14:0,14 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [43] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document25.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [43] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document26.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (33:0,33 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [40] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document26.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [40] ) - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document27.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (20:0,20 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [29] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document27.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [29] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document28.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (14:0,14 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [40] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document28.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [40] ) - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document29.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (10:0,10 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [29] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document29.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [29] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [31] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document30.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [54] ) - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document31.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [43] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document32.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [126] ) - InputTagHelper1 - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document33.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [101] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [28] ) - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [17] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [23] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [27] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document8.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [21] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_Document9.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [23] ) - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_PartialTags1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [23] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_PartialTags2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [28] ) - InputTagHelper1 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_PartialTags3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [25] ) - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_PartialTags4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [64] ) - InputTagHelper1 - InputTagHelper2 - InputTagHelper3 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_PartialTags5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [15] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_PartialTags6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [12] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedAttributes_PartialTags7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [25] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperBlockRewriterTest/UnderstandsMinimizedBooleanBoundAttributes.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [37] ) - InputTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsPrefixedTagHelpers1.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [7] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [7] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsPrefixedTagHelpers10.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [47] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsPrefixedTagHelpers11.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [34] ) - mythTagHelper2 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsPrefixedTagHelpers3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [11] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsPrefixedTagHelpers4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [19] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsPrefixedTagHelpers5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [40] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsPrefixedTagHelpers8.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (16:0,16 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [23] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsPrefixedTagHelpers8.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [23] ) - mythTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsPrefixedTagHelpers9.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (17:0,17 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [24] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsPrefixedTagHelpers9.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [24] ) - mythTagHelper2 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsRazorCommentsAsChildren.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [26] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsRazorMarkupInHtmlComment.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [37] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsSimpleHtmlCommentsAsChildren.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [36] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (9:0,9 [13] ) - texttaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptForIncompleteHTML1.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [2] ) (Accepts:Any) - Parent: Markup block at (0:0,0 [2] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptOutCSharp_WithBlockData10.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [13] ) - strongtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptOutCSharp_WithBlockData11.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [17] ) - strongtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptOutCSharp_WithBlockData12.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [21] ) - ptaghelper 2 | TagHelper span at (5:0,5 [18] ) - strongtaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptOutCSharp_WithBlockData6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [8] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptOutCSharp_WithBlockData7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [16] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptOutCSharp_WithBlockData8.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [13] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptOutHTML_WithBlockData10.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [22] ) - strongtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptOutHTML_WithBlockData11.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [17] ) - strongtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptOutHTML_WithBlockData12.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [39] ) - ptaghelper 2 | TagHelper span at (3:0,3 [31] ) - strongtaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptOutHTML_WithBlockData6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [8] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptOutHTML_WithBlockData7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [16] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/AllowsTagHelperElementOptOutHTML_WithBlockData8.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [12] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/CanHandleInvalidChildrenWithWhitespace.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [53] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/CanHandleMultipleTagHelpersWithAllowedChildren.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (11:0,11 [11] ) (Accepts:Any) - Parent: Tag block at (3:0,3 [28] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/CanHandleMultipleTagHelpersWithAllowedChildren_OneNull.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (11:0,11 [11] ) (Accepts:Any) - Parent: Tag block at (3:0,3 [28] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/CanHandleStartTagOnlyTagTagMode.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [7] ) - InputTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/CreatesErrorForInconsistentTagStructures.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [7] ) - InputTagHelper1 - InputTagHelper2 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/CreatesErrorForWithoutEndTagTagStructureForEndTags.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [8] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [8] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/DoesNotRewriteTextTagTransitionTagHelpers1.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (6:0,6 [11] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [24] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/DoesNotRewriteTextTagTransitionTagHelpers1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [24] ) - texttaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/DoesNotRewriteTextTagTransitionTagHelpers3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (8:0,8 [18] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/DoesNotRewriteTextTagTransitionTagHelpers4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (2:0,2 [31] ) - ptaghelper 2 | TagHelper span at (5:0,5 [24] ) - texttaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/DoesntAllowSimpleHtmlCommentsAsChildrenWhenFeatureFlagIsOff.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [19] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/FailsForContentWithCommentsAsChildren.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [35] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/InvalidStructure_UnderstandsTHPrefixAndAllowedChildrenAndRequireParent.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [25] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [26] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [48] ) - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [43] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [55] ) - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/NonTagHelperChild_UnderstandsTagHelperPrefixAndAllowedChildren.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [30] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RecoversWhenRequiredAttributeMismatchAndRestrictedChildren.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [43] ) - StrongTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly1.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [2] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [2] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly10.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [35] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly2.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (10:0,10 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [14] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [14] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [31] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly5.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (10:0,10 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [18] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly5.diag.txt: -------------------------------------------------------------------------------- 1 | (1,18): Error RZ1035: Missing close angle for tag helper 'p'. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [18] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly6.diag.txt: -------------------------------------------------------------------------------- 1 | (1,35): Error RZ1035: Missing close angle for tag helper 'p'. 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [35] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [18] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly8.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [35] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly9.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (10:0,10 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [18] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly9.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [18] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly1.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [5] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [5] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (18:0,18 [2] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [24] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [24] ) - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly11.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [35] ) - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly12.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [47] ) - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly13.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [58] ) - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly16.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [33] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly17.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [45] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly18.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [51] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly19.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [28] ) - divTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly20.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [41] ) - divTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly21.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [48] ) - divTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly22.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [71] ) - divTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly23.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [63] ) - divTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly24.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [31] ) - pTagHelper - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly25.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [49] ) - pTagHelper - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly26.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [42] ) - divTagHelper - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly27.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [63] ) - divTagHelper - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly28.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [65] ) - divTagHelper - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly29.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [97] ) - divTagHelper - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly3.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (0:0,0 [7] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [7] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly30.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [78] ) - divTagHelper - catchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (10:0,10 [3] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [17] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [17] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [27] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [35] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [45] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [50] ) - pTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RewritesNestedTagHelperTagBlocks1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [18] ) - ptaghelper 2 | TagHelper span at (3:0,3 [11] ) - divtaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RewritesNestedTagHelperTagBlocks2.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (3:0,3 [12] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [30] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RewritesNestedTagHelperTagBlocks2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [30] ) - ptaghelper 2 | TagHelper span at (15:0,15 [11] ) - divtaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/RewritesNestedTagHelperTagBlocks4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [29] ) - ptaghelper 2 | TagHelper span at (30:0,30 [25] ) - ptaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [13] ) - PTagHelper 2 | TagHelper span at (3:0,3 [6] ) - BRTagHelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren12.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (3:0,3 [2] ) (Accepts:Any) - Parent: Tag block at (3:0,3 [2] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren12.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [9] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren13.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (3:0,3 [1] ) (Accepts:Any) - Parent: Tag block at (3:0,3 [1] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren13.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [8] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [17] ) - PTagHelper 2 | TagHelper span at (5:1,0 [6] ) - BRTagHelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [11] ) - PTagHelper 2 | TagHelper span at (3:0,3 [4] ) - BRTagHelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren4.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (3:0,3 [5] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [12] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [12] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren5.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (3:0,3 [6] ) (Accepts:Any) - Parent: Tag block at (3:0,3 [6] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [13] ) - PTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren6.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (7:0,7 [5] ) (Accepts:Any) - Parent: Tag block at (0:0,0 [16] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsAllowedChildren6.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [16] ) - PTagHelper 2 | TagHelper span at (3:0,3 [4] ) - BRTagHelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNestedRequiredParent2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [24] ) - PTagHelper 2 | TagHelper span at (3:0,3 [17] ) - StrongTagHelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNestedRequiredParent3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (5:0,5 [17] ) - StrongTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNestedRequiredParent5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [41] ) - PTagHelper 2 | TagHelper span at (3:0,3 [34] ) - StrongTagHelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNestedVoidSelfClosingRequiredParent1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [7] ) - InputTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNestedVoidSelfClosingRequiredParent3.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (3:0,3 [4] ) (Accepts:Any) - Parent: Tag block at (3:0,3 [4] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNestedVoidSelfClosingRequiredParent3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [28] ) - PTagHelper 2 | TagHelper span at (7:0,7 [17] ) - StrongTagHelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNestedVoidSelfClosingRequiredParent4.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (6:0,6 [4] ) (Accepts:Any) - Parent: Tag block at (6:0,6 [4] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNestedVoidSelfClosingRequiredParent5.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [7] ) - InputTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNestedVoidSelfClosingRequiredParent7.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (3:0,3 [6] ) (Accepts:Any) - Parent: Tag block at (3:0,3 [6] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNestedVoidSelfClosingRequiredParent7.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [23] ) - PTagHelper 2 | TagHelper span at (9:0,9 [10] ) - StrongTagHelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNestedVoidSelfClosingRequiredParent8.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (6:0,6 [6] ) (Accepts:Any) - Parent: Tag block at (6:0,6 [6] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNullTagNameWithAllowedChildrenForCatchAll.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (3:0,3 [2] ) (Accepts:Any) - Parent: Tag block at (3:0,3 [2] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNullTagNameWithAllowedChildrenForCatchAll.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [9] ) - PTagHelper - CatchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNullTagNameWithAllowedChildrenForCatchAllWithPrefix.cspans.txt: -------------------------------------------------------------------------------- 1 | Markup span at (6:0,6 [2] ) (Accepts:Any) - Parent: Tag block at (6:0,6 [2] ) 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsNullTagNameWithAllowedChildrenForCatchAllWithPrefix.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [15] ) - PTagHelper - CatchAllTagHelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsTagHelperPrefixAndAllowedChildren.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (0:0,0 [36] ) - PTagHelper 2 | TagHelper span at (6:0,6 [23] ) - StrongTagHelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsTagHelpersInHtmlTypedScriptTags1.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (25:0,25 [9] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsTagHelpersInHtmlTypedScriptTags2.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (58:0,58 [9] ) - inputtaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsTagHelpersInHtmlTypedScriptTags3.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (25:0,25 [50] ) - ptaghelper 2 | TagHelper span at (53:0,53 [9] ) - inputtaghelper 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/ParserTests/TagHelperParseTreeRewriterTest/UnderstandsTagHelpersInHtmlTypedScriptTags4.tspans.txt: -------------------------------------------------------------------------------- 1 | TagHelper span at (25:0,25 [51] ) - ptaghelper 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/Source/BasicMarkup.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | This is the title. 4 | 5 | 6 | Link to Contoso. 7 | 8 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method", 3 | "shadowCopy": false 4 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Runtime.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method", 3 | "shadowCopy": false 4 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Test.MvcShim.Version1_X/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } 4 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Test.MvcShim.Version2_X/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } 4 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Test.MvcShim/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } 4 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Test/TagHelpers/DefaultTagHelperContentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/5439cfe540084edd673b7ed626f2ec9cf3f13b18/test/Microsoft.AspNetCore.Razor.Test/TagHelpers/DefaultTagHelperContentTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/5439cfe540084edd673b7ed626f2ec9cf3f13b18/test/Microsoft.AspNetCore.Razor.Test/xunit.runner.json -------------------------------------------------------------------------------- /test/Microsoft.CodeAnalysis.Razor.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method", 3 | "shadowCopy": false 4 | } -------------------------------------------------------------------------------- /test/Microsoft.CodeAnalysis.Razor.Workspaces.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method", 3 | "shadowCopy": false 4 | } -------------------------------------------------------------------------------- /test/Microsoft.NET.Sdk.Razor.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method", 3 | "shadowCopy": false, 4 | "maxParallelThreads": -1 5 | } -------------------------------------------------------------------------------- /test/Microsoft.VisualStudio.Editor.Razor.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method", 3 | "shadowCopy": false 4 | } -------------------------------------------------------------------------------- /test/Microsoft.VisualStudio.LanguageServices.Razor.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method", 3 | "shadowCopy": false 4 | } -------------------------------------------------------------------------------- /test/Microsoft.VisualStudio.Mac.LanguageServices.Razor.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method", 3 | "shadowCopy": false 4 | } -------------------------------------------------------------------------------- /test/RazorPageGenerator.Test/TestFiles/Views/TestFile.js: -------------------------------------------------------------------------------- 1 | window.alert("Hello world"); -------------------------------------------------------------------------------- /test/RazorPageGenerator.Test/TestFiles/Views/TestView.cshtml: -------------------------------------------------------------------------------- 1 | The time is @DateTime.UtcNow 2 | <%$ include: TestFile.js %> 3 | Footer goes here. -------------------------------------------------------------------------------- /test/RazorPageGenerator.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method", 3 | "shadowCopy": false 4 | } -------------------------------------------------------------------------------- /test/testapps/AppWithP2PReference/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"]

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /test/testapps/AppWithP2PReference/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using AppWithP2PReference 2 | @using AppWithP2PReference.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /test/testapps/AppWithP2PReference/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /test/testapps/ClassLibrary/Class1.cs: -------------------------------------------------------------------------------- 1 | namespace ClassLibrary 2 | { 3 | public class Class1 4 | { 5 | // Just here so this assembly has some compilation inputs. 6 | } 7 | } -------------------------------------------------------------------------------- /test/testapps/ClassLibrary/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using ClassLibrary 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /test/testapps/ClassLibrary2/Views/Shared/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ var message = "Hello world";} 2 | @message 3 | -------------------------------------------------------------------------------- /test/testapps/ClassLibrary2/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using ClassLibrary 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /test/testapps/LargeProject/Views/Home/View001.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"]

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

-------------------------------------------------------------------------------- /test/testapps/LargeProject/Views/Shared/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using LargeProject 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /test/testapps/LargeProject/Views/Shared/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /test/testapps/LinkedDir/LinkedErrorFile.cshtml: -------------------------------------------------------------------------------- 1 | @( -------------------------------------------------------------------------------- /test/testapps/LinkedDir/LinkedFile.cshtml: -------------------------------------------------------------------------------- 1 | @DateTime.UtcNow -------------------------------------------------------------------------------- /test/testapps/LinkedDir/LinkedFile2.cshtml: -------------------------------------------------------------------------------- 1 | @DateTime.UtcNow -------------------------------------------------------------------------------- /test/testapps/LinkedDir/LinkedFile3.cshtml: -------------------------------------------------------------------------------- 1 | @DateTime.UtcNow -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/TestComponent.razor: -------------------------------------------------------------------------------- 1 | Hello from component -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 | Hello world! -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/Views/Shared/NavMenu.razor: -------------------------------------------------------------------------------- 1 | NavMenu content 2 | 3 | -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using MvcWithComponents 2 | @using MvcWithComponents.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/SimpleTagHelper.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Razor.TagHelpers; 2 | 3 | namespace SimpleMvc 4 | { 5 | public class SimpleTagHelper : TagHelper 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"]

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using SimpleMvc 2 | @using SimpleMvc.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/wwwroot/js/SimpleMvc.js: -------------------------------------------------------------------------------- 1 | // This is a test file 2 | -------------------------------------------------------------------------------- /test/testapps/SimpleMvc21/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"]

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /test/testapps/SimpleMvc21/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using SimpleMvc 2 | @using SimpleMvc.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | @namespace SimpleMvc21 5 | -------------------------------------------------------------------------------- /test/testapps/SimpleMvc21/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /test/testapps/SimpleMvcFSharp/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /test/testapps/SimpleMvcFSharp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using SimpleMvcFSharp 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /test/testapps/SimplePages/Areas/Products/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using SimplePages 2 | @namespace SimplePages.Pages 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /test/testapps/SimplePages/Areas/Products/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /test/testapps/SimplePages/Pages/About.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model AboutModel 3 | @{ 4 | ViewData["Title"] = "About"; 5 | } 6 |

@ViewData["Title"]

7 |

@Model.Message

8 | 9 |

Use this area to provide additional information.

10 | -------------------------------------------------------------------------------- /test/testapps/SimplePages/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using SimplePages 2 | @namespace SimplePages.Pages 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /test/testapps/SimplePages/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /test/testapps/SimplePages/Program.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace SimplePages 3 | { 4 | public class Program 5 | { 6 | public static void Main(string[] args) 7 | { 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.RazorExtension/Resources/RazorInfoToolWindowCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/5439cfe540084edd673b7ed626f2ec9cf3f13b18/tooling/Microsoft.VisualStudio.RazorExtension/Resources/RazorInfoToolWindowCommand.png -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.RazorExtension/Resources/RazorPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/5439cfe540084edd673b7ed626f2ec9cf3f13b18/tooling/Microsoft.VisualStudio.RazorExtension/Resources/RazorPackage.ico -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.RazorExtension/WebConfiguration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/5439cfe540084edd673b7ed626f2ec9cf3f13b18/tooling/Microsoft.VisualStudio.RazorExtension/WebConfiguration.png --------------------------------------------------------------------------------