3 overrides of FixedImplementationType
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Metadata\PE\PEFieldSymbol.cs (1)
443internal override NamedTypeSymbol FixedImplementationType(PEModuleBuilder emitModule)
Symbols\Source\SourceMemberFieldSymbol.cs (1)
313internal 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)
570var fixedImpl = field.FixedImplementationType(_module);
Compiler\MethodCompiler.cs (1)
571TypeSymbol discarded = fieldSymbol.FixedImplementationType(compilationState.ModuleBuilderOpt);
Emitter\Model\FieldSymbolAdapter.cs (1)
38var implType = isFixed ? AdaptedFieldSymbol.FixedImplementationType(moduleBeingBuilt) : fieldTypeWithAnnotations.Type;
Symbols\SubstitutedFieldSymbol.cs (1)
103return (NamedTypeSymbol)_containingType.TypeSubstitution.SubstituteType(OriginalDefinition.FixedImplementationType(emitModule)).Type;