1 write to Baseline
Microsoft.CodeAnalysis (1)
Emit\EditAndContinue\EmitDifferenceResult.cs (1)
27Baseline = baseline;
8 references to Baseline
Microsoft.CodeAnalysis (1)
Emit\EditAndContinue\EmitBaseline.cs (1)
191/// The slot ordering thus no longer matches the syntax ordering. It is therefore necessary to pass <see cref="EmitDifferenceResult.Baseline"/>
Microsoft.CodeAnalysis.Features (4)
EditAndContinue\EditSession.cs (4)
127Debug.Assert(emitResult.Baseline is not null); 141var highestExistingTypeDefRow = emitResult.Baseline.OriginalMetadata.GetMetadataReader().GetTableRowCount(TableIndex.TypeDef); 1013Contract.ThrowIfNull(emitResult.Baseline); 1052emitBaselines.Add((newProject.Id, emitResult.Baseline));
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\CompilationDifference.cs (3)
51return EmitResult.Baseline; 137var actual = EmitResult.Baseline.SynthesizedMembers.Select(e => e.Key.ToString() + ": {" + string.Join(", ", e.Value.Select(v => v.Name)) + "}"); 143var actual = EmitResult.Baseline.SynthesizedMembers.Single(e => e.Key.ToString() == typeName).Value.Where(s => s.Kind == SymbolKind.Field).Select(s => (IFieldSymbol)s.GetISymbol()).Select(f => f.Name + ": " + f.Type);