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)
129/// 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)
125Debug.Assert(emitResult.Baseline is not null); 139var highestExistingTypeDefRow = emitResult.Baseline.OriginalMetadata.GetMetadataReader().GetTableRowCount(TableIndex.TypeDef); 1058Contract.ThrowIfNull(emitResult.Baseline); 1100newProjectBaselines.Add(new ProjectBaseline(mvid, projectBaseline.ProjectId, emitResult.Baseline, projectBaseline.Generation + 1));
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\CompilationDifference.cs (3)
53return EmitResult.Baseline; 138=> VerifySynthesizedMembers(EmitResult.Baseline.SynthesizedMembers, displayTypeKind: false, expectedSynthesizedTypesAndMemberCounts); 169var 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);