6 references to HasAnnotation
Microsoft.CodeAnalysis (1)
Syntax\SyntaxNode.cs (1)
1272
.Where(t => t.
HasAnnotation
(annotation));
Microsoft.CodeAnalysis.CodeStyle (1)
AnnotationTable.cs (1)
174
=> nodeOrToken.
HasAnnotation
(this.GetRealAnnotation(annotation));
Microsoft.CodeAnalysis.VisualBasic.Features (1)
ExtractInterface\VisualBasicExtractInterfaceService.vb (1)
127
token = currentRoot.DescendantNodesAndTokensAndSelf().FirstOrDefault(Function(x) x.
HasAnnotation
(annotation))
Microsoft.CodeAnalysis.Workspaces (3)
AnnotationTable.cs (1)
174
=> nodeOrToken.
HasAnnotation
(this.GetRealAnnotation(annotation));
Simplification\AbstractSimplificationService.cs (2)
30
protected static readonly Func<SyntaxNodeOrToken, bool> s_hasSimplifierAnnotation = n => n.
HasAnnotation
(Simplifier.Annotation);
233
.Single(c => c.
HasAnnotation
(annotation));