3 overrides of SyntaxTree
Microsoft.CodeAnalysis.CSharp (3)
Compilation\MemberSemanticModel.cs (1)
1147public override SyntaxTree SyntaxTree
Compilation\SpeculativeSemanticModelWithMemberModel.cs (1)
129public override SyntaxTree SyntaxTree => _memberModel.SyntaxTree;
Compilation\SyntaxTreeSemanticModel.cs (1)
86public override SyntaxTree SyntaxTree
7 references to SyntaxTree
Microsoft.CodeAnalysis.CSharp (7)
Compilation\CSharpSemanticModel.cs (7)
233binder = new WithNullableContextBinder(SyntaxTree, position, binder); 1233return node.SyntaxTree == this.SyntaxTree; 1276bool atEOF = position == fullEnd && position == this.SyntaxTree.GetRoot().FullSpan.End; 1280token = (atEOF ? (CSharpSyntaxNode)this.SyntaxTree.GetRoot() : Root).FindTokenIncludingCrefAndNameAttributes(position); 3236if (location.SourceTree == this.SyntaxTree && parameter.Span.Contains(location.SourceSpan)) 4847bool isDefined = this.SyntaxTree.IsPreprocessorSymbolDefined(node.Identifier.ValueText, node.Identifier.SpanStart); 4937return this.SyntaxTree;