1 override of GetAllSynthesizedTypes
Microsoft.CodeAnalysis (1)
Emit\CommonPEModuleBuilder.cs (1)
1092internal sealed override SynthesizedTypeMaps GetAllSynthesizedTypes()
3 references to GetAllSynthesizedTypes
Microsoft.CodeAnalysis (2)
Compilation\Compilation.cs (1)
3463var currentSynthesizedTypes = moduleBeingBuilt.GetAllSynthesizedTypes();
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
200var synthesizedTypes = (_previousGeneration.Ordinal == 0) ? module.GetAllSynthesizedTypes() : _previousGeneration.SynthesizedTypes;
Roslyn.Test.PdbUtilities (1)
EditAndContinue\EditAndContinueTest.GenerationVerifier.cs (1)
215var map = generationInfo.CompilationVerifier?.TestData.Module!.GetAllSynthesizedTypes() ?? generationInfo.Baseline.SynthesizedTypes;