1 instantiation of DynamicTypeDecoder
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\DynamicTypeDecoder.cs (1)
121var decoder = new DynamicTypeDecoder(dynamicTransformFlags, haveCustomModifierFlags, checkLength, containingAssembly);
8 references to DynamicTypeDecoder
Microsoft.CodeAnalysis.CSharp (8)
Symbols\Metadata\PE\DynamicTypeDecoder.cs (2)
121var decoder = new DynamicTypeDecoder(dynamicTransformFlags, haveCustomModifierFlags, checkLength, containingAssembly); 398static (TypeWithAnnotations, bool madeChanges) handle(ref DynamicTypeDecoder decoder, RefKind refKind, ImmutableArray<CustomModifier> refCustomModifiers, TypeWithAnnotations typeWithAnnotations)
Symbols\Metadata\PE\PEEventSymbol.cs (1)
97var typeSymbol = DynamicTypeDecoder.TransformType(originalEventType, targetSymbolCustomModifierCount, handle, moduleSymbol);
Symbols\Metadata\PE\PEFieldSymbol.cs (1)
314typeSymbol = DynamicTypeDecoder.TransformType(typeSymbol, customModifiersArray.Length, _handle, moduleSymbol);
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
539TypeSymbol decodedType = DynamicTypeDecoder.TransformType(baseType, 0, _handle, moduleSymbol);
Symbols\Metadata\PE\PEParameterSymbol.cs (1)
308var typeSymbol = DynamicTypeDecoder.TransformType(typeWithAnnotations.Type, countOfCustomModifiers, handle, moduleSymbol, refKind);
Symbols\Metadata\PE\PEPropertySymbol.cs (1)
296originalPropertyType = DynamicTypeDecoder.TransformType(originalPropertyType, typeCustomModifiers.Length, handle, moduleSymbol, _refKind);
Symbols\Source\CustomModifierUtils.cs (1)
79TypeSymbol resultType = DynamicTypeDecoder.TransformTypeWithoutCustomModifierFlags(sourceType, containingAssembly, refKind, flags);