7 writes to _syntaxTree
Microsoft.CodeAnalysis (2)
Syntax\SyntaxNode.cs (2)
47this._syntaxTree = syntaxTree; 1648clone._syntaxTree = syntaxTree;
Microsoft.CodeAnalysis.CSharp (3)
Syntax\CSharpSyntaxNode.cs (3)
76Interlocked.CompareExchange(ref node._syntaxTree, CSharpSyntaxTree.CreateWithoutClone(node), null); 85node._syntaxTree = tree; 108n._syntaxTree = tree;
Microsoft.CodeAnalysis.VisualBasic (2)
Syntax\VisualBasicSyntaxNode.vb (2)
34_syntaxTree = syntaxTree 80Dim alternativeTree As SyntaxTree = Interlocked.CompareExchange(stack.Pop()._syntaxTree, tree, Nothing)
8 references to _syntaxTree
Microsoft.CodeAnalysis.CSharp (5)
Syntax\CSharpSyntaxNode.cs (5)
51var result = this._syntaxTree ?? ComputeSyntaxTree(this); 65tree = node._syntaxTree; 78tree = node._syntaxTree; 82tree = parent._syntaxTree; 100var existingTree = n._syntaxTree;
Microsoft.CodeAnalysis.VisualBasic (3)
Syntax\VisualBasicSyntaxNode.vb (3)
52If Me._syntaxTree Is Nothing Then 60tree = current._syntaxTree 89Return Me._syntaxTree