3 overrides of SyntaxTree
Microsoft.CodeAnalysis.CSharp (3)
Compilation\MemberSemanticModel.cs (1)
1186public 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)
235binder = new WithNullableContextBinder(SyntaxTree, position, binder); 1249return node.SyntaxTree == this.SyntaxTree; 1292bool atEOF = position == fullEnd && position == this.SyntaxTree.GetRoot().FullSpan.End; 1296token = (atEOF ? (CSharpSyntaxNode)this.SyntaxTree.GetRoot() : Root).FindTokenIncludingCrefAndNameAttributes(position); 3247if (location.SourceTree == this.SyntaxTree && parameter.Span.Contains(location.SourceSpan)) 4876bool isDefined = this.SyntaxTree.IsPreprocessorSymbolDefined(node.Identifier.ValueText, node.Identifier.SpanStart); 4996return this.SyntaxTree;