1 write to _targetIndex
System.Linq.Expressions (1)
System\Linq\Expressions\Interpreter\BranchLabel.cs (1)
56_targetIndex = instructions.Count;
8 references to _targetIndex
System.Linq.Expressions (8)
System\Linq\Expressions\Interpreter\BranchLabel.cs (8)
42internal int TargetIndex => _targetIndex; 46Debug.Assert(_targetIndex != UnknownIndex && _stackDepth != UnknownDepth && _continuationStackDepth != UnknownDepth); 47return new RuntimeLabel(_targetIndex, _continuationStackDepth, _stackDepth); 70Debug.Assert(((_targetIndex == UnknownIndex) == (_stackDepth == UnknownDepth))); 71Debug.Assert(((_targetIndex == UnknownIndex) == (_continuationStackDepth == UnknownDepth))); 73if (_targetIndex == UnknownIndex) 86Debug.Assert(_targetIndex != UnknownIndex); 87instructions.FixupBranch(branchIndex, _targetIndex - branchIndex);