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