5 references to Any
Microsoft.CodeAnalysis.CSharp.Features (4)
Highlighting\KeywordHighlighters\AsyncAwaitHighlighter.cs (1)
31
=> tokens.
Any
(static t => t.Kind() is SyntaxKind.AwaitKeyword or SyntaxKind.AsyncKeyword);
Highlighting\KeywordHighlighters\IfStatementHighlighter.cs (1)
29
=> tokens.
Any
(static t => t.Kind() is SyntaxKind.IfKeyword or SyntaxKind.ElseKeyword);
Highlighting\KeywordHighlighters\LoopHighlighter.cs (1)
26
=> tokens.
Any
(static t => t.Kind()
Highlighting\KeywordHighlighters\SwitchStatementHighlighter.cs (1)
27
=> tokens.
Any
(static t => t.Kind()
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixes\FixAllOccurrences\TextChangeMerger.cs (1)
243
return intersectingSpans.
Any
(static otherSpan => IsPureInsertion(otherSpan));