3 overrides of FixedImplementationType
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Metadata\PE\PEFieldSymbol.cs (1)
441internal override NamedTypeSymbol FixedImplementationType(PEModuleBuilder emitModule)
Symbols\Source\SourceMemberFieldSymbol.cs (1)
306internal override NamedTypeSymbol FixedImplementationType(PEModuleBuilder emitModule)
Symbols\SubstitutedFieldSymbol.cs (1)
97internal override NamedTypeSymbol FixedImplementationType(PEModuleBuilder emitModule)
4 references to FixedImplementationType
Microsoft.CodeAnalysis.CSharp (4)
CodeGen\EmitAddress.cs (1)
565var fixedImpl = field.FixedImplementationType(_module);
Compiler\MethodCompiler.cs (1)
570TypeSymbol discarded = fieldSymbol.FixedImplementationType(compilationState.ModuleBuilderOpt);
Emitter\Model\FieldSymbolAdapter.cs (1)
35var implType = isFixed ? AdaptedFieldSymbol.FixedImplementationType(moduleBeingBuilt) : fieldTypeWithAnnotations.Type;
Symbols\SubstitutedFieldSymbol.cs (1)
103return (NamedTypeSymbol)_containingType.TypeSubstitution.SubstituteType(OriginalDefinition.FixedImplementationType(emitModule)).Type;