2 writes to nextChild
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\ParentSymbol.cs (2)
38
_lastChild.
nextChild
= sym;
40
sym.
nextChild
= null;
6 references to nextChild
Microsoft.CSharp (6)
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\ParentSymbol.cs (3)
29
Debug.Assert(sym.
nextChild
== null);
46
for (psym = this.firstChild; psym?.
nextChild
!= null && --count > 0;)
47
psym = psym.
nextChild
;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
100
Debug.Assert(anonmeth.ArgumentScope.
nextChild
== null);
806
for (Symbol sym = anonmeth.ArgumentScope.firstChild; sym != null; sym = sym.
nextChild
)
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (1)
501
for (Symbol sym = parent.firstChild; sym != null; sym = sym.
nextChild
)