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