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