8 references to IsSingleLineComment
Microsoft.CodeAnalysis.CSharp.Features (4)
Structure\CSharpStructureHelpers.cs (3)
143Contract.ThrowIfFalse(comment.IsSingleLineComment() || comment.IsMultiLineComment()); 145if (comment.IsSingleLineComment()) 211if (trivia.IsSingleLineComment())
TaskList\CSharpTaskListService.cs (1)
90=> trivia.IsSingleLineComment() || trivia.IsSingleLineDocComment();
Microsoft.CodeAnalysis.CSharp.Workspaces (4)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxTreeExtensions.cs\SyntaxTreeExtensions.cs (2)
322if (trivia.IsSingleLineComment() || trivia.IsShebangDirective()) 348if (trivia.IsSingleLineComment())
Rename\CSharpRenameRewriterLanguageService.cs (1)
662if (newTrivia.IsSingleLineComment() || newTrivia.IsMultiLineComment())
SyntaxTriviaExtensions.cs (1)
180previousIsSingleLineComment = t.IsSingleLineComment();