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)
42
internal int TargetIndex =>
_targetIndex
;
46
Debug.Assert(
_targetIndex
!= UnknownIndex && _stackDepth != UnknownDepth && _continuationStackDepth != UnknownDepth);
47
return new RuntimeLabel(
_targetIndex
, _continuationStackDepth, _stackDepth);
70
Debug.Assert(((
_targetIndex
== UnknownIndex) == (_stackDepth == UnknownDepth)));
71
Debug.Assert(((
_targetIndex
== UnknownIndex) == (_continuationStackDepth == UnknownDepth)));
73
if (
_targetIndex
== UnknownIndex)
86
Debug.Assert(
_targetIndex
!= UnknownIndex);
87
instructions.FixupBranch(branchIndex,
_targetIndex
- branchIndex);