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