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 | 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 | 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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/TagHelpersWithPrefix.cshtml:
--------------------------------------------------------------------------------
1 | @addTagHelper *, TestAssembly
2 | @tagHelperPrefix cool:
3 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/TagHelpersIntegrationTest/SimpleTagHelpers.cshtml:
--------------------------------------------------------------------------------
1 | @addTagHelper *, TestAssembly
2 | Hola
3 |
--------------------------------------------------------------------------------
/test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/TagHelpersIntegrationTest/TagHelpersWithBoundAttributes.cshtml:
--------------------------------------------------------------------------------
1 | @addTagHelper *, TestAssembly
2 |
--------------------------------------------------------------------------------
/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
--------------------------------------------------------------------------------