2 writes to _legacyCallTargetScopes
Microsoft.Build (2)
BackEnd\Components\RequestBuilder\TargetEntry.cs (2)
761
_legacyCallTargetScopes
= new Stack<Lookup.Scope>();
803
_legacyCallTargetScopes
= null;
7 references to _legacyCallTargetScopes
Microsoft.Build (7)
BackEnd\Components\RequestBuilder\TargetEntry.cs (7)
700
ErrorUtilities.VerifyThrow(
_legacyCallTargetScopes
== null, "We should have already left any legacy call target scopes.");
747
ErrorUtilities.VerifyThrow(
_legacyCallTargetScopes
== null, "We should have already left any legacy call target scopes.");
759
if (
_legacyCallTargetScopes
== null)
764
_legacyCallTargetScopes
.Push(lookup.EnterScope("EnterLegacyCallTargetScope()"));
795
if (
_legacyCallTargetScopes
!= null)
797
while (
_legacyCallTargetScopes
.Count != 0)
799
Lookup.Scope entry =
_legacyCallTargetScopes
.Pop();