12 references to StartCommentStar
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\Legacy\ClassifiedSpanVisitor.cs (2)
57AddSpan(node.StartCommentStar, SpanKindInternal.MetaCode, AcceptedCharactersInternal.None); 64comment = SyntaxFactory.Token(SyntaxKind.Marker, parent: node, position: node.StartCommentStar.EndPosition);
Language\Syntax\Generated\Syntax.xml.Main.Generated.cs (1)
267=> node.Update((SyntaxToken)VisitToken(node.StartCommentTransition), (SyntaxToken)VisitToken(node.StartCommentStar), (SyntaxToken)VisitToken(node.Comment), (SyntaxToken)VisitToken(node.EndCommentStar), (SyntaxToken)VisitToken(node.EndCommentTransition));
Language\Syntax\Generated\Syntax.xml.Syntax.Generated.cs (5)
83if (startCommentTransition != StartCommentTransition || startCommentStar != StartCommentStar || comment != Comment || endCommentStar != EndCommentStar || endCommentTransition != EndCommentTransition) 95public RazorCommentBlockSyntax WithStartCommentTransition(SyntaxToken startCommentTransition) => Update(startCommentTransition, StartCommentStar, Comment, EndCommentStar, EndCommentTransition); 97public RazorCommentBlockSyntax WithComment(SyntaxToken comment) => Update(StartCommentTransition, StartCommentStar, comment, EndCommentStar, EndCommentTransition); 98public RazorCommentBlockSyntax WithEndCommentStar(SyntaxToken endCommentStar) => Update(StartCommentTransition, StartCommentStar, Comment, endCommentStar, EndCommentTransition); 99public RazorCommentBlockSyntax WithEndCommentTransition(SyntaxToken endCommentTransition) => Update(StartCommentTransition, StartCommentStar, Comment, EndCommentStar, endCommentTransition);
Microsoft.CodeAnalysis.Razor.Workspaces (4)
Extensions\RazorCodeDocumentExtensions_ClassifiedSpans.cs (2)
85AddSpan(node.StartCommentStar, SpanKind.MetaCode); 92comment = SyntaxFactory.Token(SyntaxKind.Marker, parent: node, position: node.StartCommentStar.EndPosition);
Formatting\FormattingVisitor.cs (1)
52AddSpan(node.StartCommentStar, FormattingSpanKind.MetaCode);
SemanticTokens\SemanticTokensVisitor.cs (1)
255AddSemanticRange(node.StartCommentStar, tokenTypes.RazorCommentStar);