2 writes to _currentInterpolatedStringHandlerArgumentContext
Microsoft.CodeAnalysis (2)
Operations\ControlFlowGraphBuilder.cs (2)
2063
_currentInterpolatedStringHandlerArgumentContext
= new InterpolatedStringHandlerArgumentsContext(
2087
_currentInterpolatedStringHandlerArgumentContext
= previousInterpolatedStringHandlerContext;
10 references to _currentInterpolatedStringHandlerArgumentContext
Microsoft.CodeAnalysis (10)
Operations\ControlFlowGraphBuilder.cs (8)
2045
var previousInterpolatedStringHandlerContext =
_currentInterpolatedStringHandlerArgumentContext
;
6780
if (
_currentInterpolatedStringHandlerArgumentContext
?.ApplicableCreationOperations.Contains(operation) == true)
6782
for (int i =
_currentInterpolatedStringHandlerArgumentContext
.StartingStackDepth;
6975
Debug.Assert(
_currentInterpolatedStringHandlerArgumentContext
!= null);
6976
if (
_currentInterpolatedStringHandlerArgumentContext
.HasReceiver && tryGetArgumentOrReceiver(-1) is IOperation receiverCapture)
6988
Debug.Assert(
_currentInterpolatedStringHandlerArgumentContext
!= null);
7006
if (
_currentInterpolatedStringHandlerArgumentContext
.HasReceiver)
7011
int targetStackDepth =
_currentInterpolatedStringHandlerArgumentContext
.StartingStackDepth + argumentIndex;
Operations\ControlFlowGraphBuilder.InterpolatedStringContext.cs (2)
63
Debug.Assert(
_currentInterpolatedStringHandlerArgumentContext
!= null);
64
Debug.Assert(
_currentInterpolatedStringHandlerArgumentContext
.ApplicableCreationOperations.Contains((IInterpolatedStringHandlerCreationOperation)operation));