2 writes to _legacyCallTargetScopes
Microsoft.Build (2)
BackEnd\Components\RequestBuilder\TargetEntry.cs (2)
756
_legacyCallTargetScopes
= new Stack<Lookup.Scope>();
798
_legacyCallTargetScopes
= null;
7 references to _legacyCallTargetScopes
Microsoft.Build (7)
BackEnd\Components\RequestBuilder\TargetEntry.cs (7)
695
ErrorUtilities.VerifyThrow(
_legacyCallTargetScopes
== null, "We should have already left any legacy call target scopes.");
742
ErrorUtilities.VerifyThrow(
_legacyCallTargetScopes
== null, "We should have already left any legacy call target scopes.");
754
if (
_legacyCallTargetScopes
== null)
759
_legacyCallTargetScopes
.Push(lookup.EnterScope("EnterLegacyCallTargetScope()"));
790
if (
_legacyCallTargetScopes
!= null)
792
while (
_legacyCallTargetScopes
.Count != 0)
794
Lookup.Scope entry =
_legacyCallTargetScopes
.Pop();