1 write to _annotationKind
Microsoft.CodeAnalysis.Workspaces (1)
AnnotationTable.cs (1)
37=> _annotationKind = annotationKind;
17 references to _annotationKind
Microsoft.CodeAnalysis.Workspaces (17)
AnnotationTable.cs (17)
54realAnnotation = new SyntaxAnnotation(_annotationKind, idString); 117=> GetAnnotations(node.GetAnnotations(_annotationKind)); 120=> GetAnnotations(token.GetAnnotations(_annotationKind)); 123=> GetAnnotations(trivia.GetAnnotations(_annotationKind)); 126=> GetAnnotations(nodeOrToken.GetAnnotations(_annotationKind)); 141=> node.HasAnnotations(_annotationKind); 144=> token.HasAnnotations(_annotationKind); 147=> trivia.HasAnnotations(_annotationKind); 150=> nodeOrToken.HasAnnotations(_annotationKind); 177=> node.GetAnnotatedNodesAndTokens(_annotationKind); 180=> node.GetAnnotatedNodesAndTokens(_annotationKind).Where(nt => nt.IsNode).Select(nt => nt.AsNode()!); 183=> node.GetAnnotatedNodesAndTokens(_annotationKind).Where(nt => nt.IsToken).Select(nt => nt.AsToken()); 186=> node.GetAnnotatedTrivia(_annotationKind); 189=> node.GetAnnotatedNodesAndTokens(_annotationKind).Where(this.HasAnnotations<TSpecificAnnotation>); 192=> node.GetAnnotatedNodesAndTokens(_annotationKind).Where(nt => nt.IsNode && this.HasAnnotations<TSpecificAnnotation>(nt)).Select(nt => nt.AsNode()!); 195=> node.GetAnnotatedNodesAndTokens(_annotationKind).Where(nt => nt.IsToken && this.HasAnnotations<TSpecificAnnotation>(nt)).Select(nt => nt.AsToken()); 198=> node.GetAnnotatedTrivia(_annotationKind).Where(this.HasAnnotations<TSpecificAnnotation>);