3 instantiations of EditAndContinueLogEntry
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (1)
Emit\EditAndContinue\EditAndContinueTestBase.cs (1)
157return new EditAndContinueLogEntry(MetadataTokens.Handle(table, rowNumber), operation);
Microsoft.CodeAnalysis.Features.Test.Utilities (1)
EditAndContinue\EditAndContinueWorkspaceTestBase.cs (1)
517=> new(MetadataTokens.Handle(table, rowNumber), operation);
System.Reflection.Metadata (1)
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (1)
298yield return new EditAndContinueLogEntry(
14 references to EditAndContinueLogEntry
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (3)
Emit\EditAndContinue\EditAndContinueTestBase.cs (3)
155internal static EditAndContinueLogEntry Row(int rowNumber, TableIndex table, EditAndContinueOperation operation) 169internal static void CheckEncLog(MetadataReader reader, params EditAndContinueLogEntry[] rows) 180internal static void CheckEncLogDefinitions(MetadataReader reader, params EditAndContinueLogEntry[] rows)
Microsoft.CodeAnalysis.Features.Test.Utilities (3)
EditAndContinue\EditAndContinueWorkspaceTestBase.cs (3)
516internal static EditAndContinueLogEntry Row(int rowNumber, TableIndex table, EditAndContinueOperation operation) 519internal static unsafe void VerifyEncLogMetadata(ImmutableArray<byte> delta, params EditAndContinueLogEntry[] expectedRows) 527static string EncLogRowToString(EditAndContinueLogEntry row)
Roslyn.Test.PdbUtilities (3)
EditAndContinue\EditAndContinueTest.GenerationVerifier.cs (2)
145internal void VerifyEncLog(IEnumerable<EditAndContinueLogEntry>? expected = null) 161internal void VerifyEncLogDefinitions(IEnumerable<EditAndContinueLogEntry>? expected = null)
EditAndContinue\EditAndContinueTestUtilities.cs (1)
38public static string EncLogRowToString(EditAndContinueLogEntry row)
System.Reflection.Metadata (5)
System\Reflection\Metadata\Ecma335\EditAndContinueLogEntry.cs (3)
8public readonly struct EditAndContinueLogEntry : IEquatable<EditAndContinueLogEntry> 20obj is EditAndContinueLogEntry editAndContinue && Equals(editAndContinue); 22public bool Equals(EditAndContinueLogEntry other) =>
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
285public static IEnumerable<EditAndContinueLogEntry> GetEditAndContinueLogEntries(this MetadataReader reader) 294static IEnumerable<EditAndContinueLogEntry> Core(MetadataReader reader)