2 writes to Kind
Microsoft.CodeAnalysis (2)
Syntax\SyntaxAnnotation.cs (2)
46this.Kind = kind; 58this.Kind = reader.ReadString();
6 references to Kind
Microsoft.CodeAnalysis (6)
Syntax\GreenNode.cs (4)
491if (a.Kind == annotationKind) 510if (annotationKinds.Contains(a.Kind)) 559if (annotation.Kind == annotationKind) 587if (annotationKinds.Contains(annotation.Kind))
Syntax\SyntaxAnnotation.cs (2)
67writer.WriteString(this.Kind); 73return string.Format("Annotation: Kind='{0}' Data='{1}'", this.Kind ?? "", this.Data ?? "");