9 references to UnknownIndex
System.Linq.Expressions (9)
System\Linq\Expressions\Interpreter\BranchLabel.cs (8)
32
private int _targetIndex =
UnknownIndex
;
40
internal int LabelIndex { get; set; } =
UnknownIndex
;
41
internal bool HasRuntimeLabel => LabelIndex !=
UnknownIndex
;
46
Debug.Assert(_targetIndex !=
UnknownIndex
&& _stackDepth != UnknownDepth && _continuationStackDepth != UnknownDepth);
70
Debug.Assert(((_targetIndex ==
UnknownIndex
) == (_stackDepth == UnknownDepth)));
71
Debug.Assert(((_targetIndex ==
UnknownIndex
) == (_continuationStackDepth == UnknownDepth)));
73
if (_targetIndex ==
UnknownIndex
)
86
Debug.Assert(_targetIndex !=
UnknownIndex
);
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (1)
174
return ToString() + (targetIndex != BranchLabel.
UnknownIndex
? " -> " + targetIndex : "");