7 references to ILOffset
Microsoft.CodeAnalysis.Features (5)
Contracts\EditAndContinue\ManagedInstructionId.cs (4)
41
return Method.Equals(other.Method) &&
ILOffset
== other.
ILOffset
;
48
return Method.GetHashCode() ^
ILOffset
;
55
internal string GetDebuggerDisplay() => $"{Method.GetDebuggerDisplay()} IL_{
ILOffset
:X4}";
EditAndContinue\EditSession.cs (1)
1334
activeStatementsInUpdatedMethodsBuilder.Add(new ManagedActiveStatementUpdate(methodId, instructionId.
ILOffset
, newActiveStatement.Span.ToSourceSpan()));
Microsoft.CodeAnalysis.Features.UnitTests (2)
EditAndContinue\RemoteEditAndContinueServiceTests.cs (2)
197
activeStatements: [new ManagedActiveStatementUpdate(instructionId1.Method.Method, instructionId1.
ILOffset
, span1.ToSourceSpan())],
242
Assert.Equal(instructionId1.
ILOffset
, activeStatements.ILOffset);