1 write to Parent
Microsoft.CodeAnalysis.CSharp (1)
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (1)
84
Parent
= parent;
13 references to Parent
Microsoft.CodeAnalysis.CSharp (13)
Lowering\ClosureConversion\ClosureConversion.Analysis.cs (6)
162
curScope = curScope.
Parent
;
167
curScope = curScope?.
Parent
;
187
curScope = curScope.
Parent
;
599
currentScope = currentScope.
Parent
;
611
return correspondingScope.
Parent
;
660
currentScope = currentScope.
Parent
;
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (7)
28
/// method being analyzed and has a null <see cref="
Parent
" />.
281
/// before the start of the scope, but after the start of <see cref="Scope.
Parent
"/>.
648
scope = scope.
Parent
;
755
/// or is the <see cref="Scope.
Parent
"/> of <see cref="_currentScope"/>.
767
RoslynDebug.Assert(scope == _currentScope.
Parent
, $"{nameof(scope)} must be {nameof(_currentScope)} or {nameof(_currentScope)}.{nameof(_currentScope.
Parent
)}");
783
_currentScope = _currentScope.
Parent
;