5 references to ILSpan
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (5)
ILSpan.cs (1)
14public static readonly ILSpan MaxValue = new ILSpan(0, uint.MaxValue);
MethodContextReuseConstraints.cs (1)
87return new ILSpan(_startOffset, _endOffsetExclusive);
PDB\MethodDebugInfo.cs (1)
92HoistedLocalScopeRecords.Select(record => new ILSpan((uint)record.StartOffset, (uint)(record.StartOffset + record.Length))));
PDB\MethodDebugInfo.Native.cs (1)
627scopes.Select(scope => new ILSpan((uint)scope.GetStartOffset(), (uint)(scope.GetEndOffset() + (isEndInclusive ? 1 : 0)))));
PDB\MethodDebugInfo.Portable.cs (1)
225reuseSpan = new ILSpan(reuseSpanStart, reuseSpanEnd);