10 references to EndCommentStar
Microsoft.CodeAnalysis.Razor.Compiler (7)
Language\Legacy\ClassifiedSpanVisitor.cs (1)
69AddSpan(node.EndCommentStar, SpanKindInternal.MetaCode, AcceptedCharactersInternal.None);
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); 96public RazorCommentBlockSyntax WithStartCommentStar(SyntaxToken startCommentStar) => Update(StartCommentTransition, startCommentStar, Comment, EndCommentStar, EndCommentTransition); 97public RazorCommentBlockSyntax WithComment(SyntaxToken comment) => Update(StartCommentTransition, StartCommentStar, comment, EndCommentStar, EndCommentTransition); 99public RazorCommentBlockSyntax WithEndCommentTransition(SyntaxToken endCommentTransition) => Update(StartCommentTransition, StartCommentStar, Comment, EndCommentStar, endCommentTransition);
Microsoft.CodeAnalysis.Razor.Workspaces (3)
Diagnostics\TaskListDiagnosticProvider.cs (1)
62if (i + token.Length + 2 > comment.EndCommentStar.SpanStart)
Extensions\RazorCodeDocumentExtensions_ClassifiedSpans.cs (1)
97AddSpan(node.EndCommentStar, SpanKind.MetaCode);
SemanticTokens\SemanticTokensVisitor.cs (1)
257AddSemanticRange(node.EndCommentStar, tokenTypes.RazorCommentStar);