4 references to FindTokenIncludingCrefAndNameAttributes
Microsoft.CodeAnalysis.CSharp (4)
Compilation\CSharpSemanticModel.cs (1)
1280token = (atEOF ? (CSharpSyntaxNode)this.SyntaxTree.GetRoot() : Root).FindTokenIncludingCrefAndNameAttributes(position);
Compilation\SpeculativeSemanticModelWithMemberModel.cs (1)
139SyntaxNode? node = Root.FindTokenIncludingCrefAndNameAttributes(position).Parent;
Compilation\SyntaxTreeSemanticModel.cs (2)
151SyntaxToken token = this.Root.FindTokenIncludingCrefAndNameAttributes(position); 780CSharpSyntaxNode node = (CSharpSyntaxNode)Root.FindTokenIncludingCrefAndNameAttributes(position).Parent;