2 writes to _lazyText
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Workspace\LanguageServices\CSharpSyntaxTreeFactoryService.ParsedSyntaxTree.cs (2)
36
_lazyText
= lazyText;
49
Interlocked.CompareExchange(ref
_lazyText
, GetRoot(cancellationToken).GetText(Encoding, _checksumAlgorithm), null);
5 references to _lazyText
Microsoft.CodeAnalysis.CSharp.Workspaces (5)
Workspace\LanguageServices\CSharpSyntaxTreeFactoryService.ParsedSyntaxTree.cs (5)
47
if (
_lazyText
== null)
52
return
_lazyText
;
57
text =
_lazyText
;
80
root == _root ?
_lazyText
: null,
90
: new ParsedSyntaxTree(
_lazyText
, _root, Options, path, Encoding, _checksumAlgorithm);