16 references to GetAnnotations
Microsoft.CodeAnalysis (16)
Syntax\GreenNode.cs (5)
462var annotations = this.GetAnnotations(); 481var annotations = this.GetAnnotations(); 500var annotations = this.GetAnnotations(); 524var annotations = this.GetAnnotations(); 552var 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)
1248return this.Green.GetAnnotations(); 1369var annotations = this.Green.GetAnnotations();
Syntax\SyntaxToken.cs (1)
387var annotations = this.Node.GetAnnotations();
Syntax\SyntaxTrivia.cs (1)
382var annotations = this.UnderlyingNode.GetAnnotations();