1 instantiation of Change
Microsoft.DotNet.HotReload.Utils.Generator (1)
Plan\Change.cs (1)
20return new Change<TDoc, TUpdate>(doc, update);
8 references to Change
Microsoft.DotNet.HotReload.Utils.Generator (8)
Delta.cs (1)
10public readonly record struct Delta (Plan.Change<DocumentId,string> Change);
DeltaProject.cs (1)
63var change = delta.Change;
Plan\Change.cs (1)
19public static Change<TDoc, TUpdate> Create<TDoc, TUpdate>(TDoc doc, TUpdate update) {
Script\Json\Parsing.cs (2)
47Plan.Change<string,string>[] changes; 49changes = Array.Empty<Plan.Change<string,string>>();
Script\ParsedScript.cs (3)
11public record ParsedScript (EnC.EditAndContinueCapabilities? Capabilities, IEnumerable<Plan.Change<string,string>> Changes, IEnumerable<string> UnknownCapabilities) { 13public static ParsedScript Empty => new (null, Array.Empty<Plan.Change<string,string>>(), Array.Empty<string>()); 15public static ParsedScript Make(IEnumerable<Plan.Change<string,string>> changes, EnC.EditAndContinueCapabilities? capabilities, IEnumerable<string> unknownCapabilities) => new (capabilities, changes, unknownCapabilities);