3 overrides of SyntaxTree
Microsoft.CodeAnalysis.CSharp (3)
Compilation\MemberSemanticModel.cs (1)
1148public 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)
234binder = new WithNullableContextBinder(SyntaxTree, position, binder); 1234return node.SyntaxTree == this.SyntaxTree; 1277bool atEOF = position == fullEnd && position == this.SyntaxTree.GetRoot().FullSpan.End; 1281token = (atEOF ? (CSharpSyntaxNode)this.SyntaxTree.GetRoot() : Root).FindTokenIncludingCrefAndNameAttributes(position); 3245if (location.SourceTree == this.SyntaxTree && parameter.Span.Contains(location.SourceSpan)) 4856bool isDefined = this.SyntaxTree.IsPreprocessorSymbolDefined(node.Identifier.ValueText, node.Identifier.SpanStart); 4946return this.SyntaxTree;