2 writes to _legacyCallTargetScopes
Microsoft.Build (2)
BackEnd\Components\RequestBuilder\TargetEntry.cs (2)
760
_legacyCallTargetScopes
= new Stack<Lookup.Scope>();
802
_legacyCallTargetScopes
= null;
7 references to _legacyCallTargetScopes
Microsoft.Build (7)
BackEnd\Components\RequestBuilder\TargetEntry.cs (7)
699
ErrorUtilities.VerifyThrow(
_legacyCallTargetScopes
== null, "We should have already left any legacy call target scopes.");
746
ErrorUtilities.VerifyThrow(
_legacyCallTargetScopes
== null, "We should have already left any legacy call target scopes.");
758
if (
_legacyCallTargetScopes
== null)
763
_legacyCallTargetScopes
.Push(lookup.EnterScope("EnterLegacyCallTargetScope()"));
794
if (
_legacyCallTargetScopes
!= null)
796
while (
_legacyCallTargetScopes
.Count != 0)
798
Lookup.Scope entry =
_legacyCallTargetScopes
.Pop();