8 references to RazorMetaCode
Microsoft.AspNetCore.Razor.Language.Legacy.UnitTests (1)
Legacy\CSharpToMarkupSwitchTest.cs (1)
375
Assert.Equal(SyntaxKind.
RazorMetaCode
, whitespace.Kind);
Microsoft.CodeAnalysis.Razor.Compiler (3)
Language\Legacy\LegacySyntaxNodeExtensions.cs (2)
53
set.Add(SyntaxKind.
RazorMetaCode
);
145
return node.Kind is SyntaxKind.
RazorMetaCode
;
Language\Syntax\Generated\Syntax.xml.Internal.Generated.cs (1)
3418
var result = new RazorMetaCodeSyntax(SyntaxKind.
RazorMetaCode
, metaCode.Node, chunkGenerator, editHandler);
Microsoft.CodeAnalysis.Razor.Workspaces (3)
Extensions\SyntaxListExtensions.cs (2)
41
if (children.FirstOrDefault(static c => c.Kind == SyntaxKind.
RazorMetaCode
) is RazorMetaCodeSyntax metaCode)
59
if (children.LastOrDefault(static c => c.Kind == SyntaxKind.
RazorMetaCode
) is RazorMetaCodeSyntax metaCode)
SemanticTokens\SemanticTokensVisitor.cs (1)
263
if (node.Kind == SyntaxKind.
RazorMetaCode
)
Microsoft.CodeAnalysis.Razor.Workspaces.UnitTests (1)
FindNodeTests.cs (1)
80
[InlineData(41, 43, SyntaxKind.
RazorMetaCode
, true)]