1 write to SynthesizedMembers
Microsoft.CodeAnalysis (1)
Emit\EditAndContinue\EmitBaseline.cs (1)
379
SynthesizedMembers
= synthesizedMembers;
8 references to SynthesizedMembers
Microsoft.CodeAnalysis (3)
Emit\EditAndContinue\DefinitionMap.cs (2)
678
Baseline.
SynthesizedMembers
.TryGetValue(oldMethod.ContainingType, out var synthesizedSiblingSymbols))
681
CreateLambdaAndClosureMap(synthesizedSiblingSymbols, Baseline.
SynthesizedMembers
, addedOrChangedMethod.MethodId),
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
199
var synthesizedMembers = (_previousGeneration.Ordinal == 0) ? module.GetAllSynthesizedMembers() : _previousGeneration.
SynthesizedMembers
;
Microsoft.CodeAnalysis.CSharp (2)
Emitter\EditAndContinue\EmitHelpers.cs (2)
88
otherSynthesizedMembers: baseline.
SynthesizedMembers
,
222
var mappedSynthesizedMembers = matcher.MapSynthesizedOrDeletedMembers(previousGeneration.
SynthesizedMembers
, currentSynthesizedMembers, isDeletedMemberMapping: false);
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\CompilationDifference.cs (2)
139
=> VerifySynthesizedMembers(EmitResult.Baseline.
SynthesizedMembers
, displayTypeKind: false, expectedSynthesizedTypesAndMemberCounts);
170
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);
Roslyn.Test.PdbUtilities (1)
EditAndContinue\EditAndContinueTest.GenerationVerifier.cs (1)
124
: generationInfo.Baseline.
SynthesizedMembers
;