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