3 references to ParentIsSkippedTokensTriviaOrNull
Microsoft.CodeAnalysis.CSharp.Features (2)
BraceCompletion\ParenthesisBraceCompletionService.cs (1)
32
if (
ParentIsSkippedTokensTriviaOrNull
(this.SyntaxFacts, token)
BraceCompletion\StringLiteralBraceCompletionService.cs (1)
57
if (
ParentIsSkippedTokensTriviaOrNull
(this.SyntaxFacts, token) || !IsValidOpeningBraceToken(token))
Microsoft.CodeAnalysis.Features (1)
BraceCompletion\AbstractBraceCompletionService.cs (1)
115
=> token.SpanStart == position && IsValidOpeningBraceToken(token) && !
ParentIsSkippedTokensTriviaOrNull
(this.SyntaxFacts, token);