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