16 references to GetAnnotations
Microsoft.CodeAnalysis (16)
Syntax\GreenNode.cs (5)
463var annotations = this.GetAnnotations(); 482var annotations = this.GetAnnotations(); 501var annotations = this.GetAnnotations(); 525var annotations = this.GetAnnotations(); 553var annotations = this.GetAnnotations();
Syntax\GreenNodeExtensions.cs (3)
28var existingAnnotations = node.GetAnnotations(); 46var existingAnnotations = node.GetAnnotations(); 77var existingAnnotations = node.GetAnnotations();
Syntax\InternalSyntax\SyntaxList.WithLotsOfChildren.cs (1)
63return new WithLotsOfChildren(errors, this.GetAnnotations(), children, _childOffsets);
Syntax\InternalSyntax\SyntaxList.WithManyChildren.cs (1)
107return new WithManyChildren(errors, this.GetAnnotations(), children);
Syntax\InternalSyntax\SyntaxList.WithThreeChildren.cs (1)
69return new WithThreeChildren(errors, this.GetAnnotations(), _child0, _child1, _child2);
Syntax\InternalSyntax\SyntaxList.WithTwoChildren.cs (1)
61return new WithTwoChildren(errors, this.GetAnnotations(), _child0, _child1);
Syntax\SyntaxNode.cs (2)
1249return this.Green.GetAnnotations(); 1370var annotations = this.Green.GetAnnotations();
Syntax\SyntaxToken.cs (1)
388var annotations = this.Node.GetAnnotations();
Syntax\SyntaxTrivia.cs (1)
383var annotations = this.UnderlyingNode.GetAnnotations();