3 instantiations of NativeIntegerMethodSymbol
Microsoft.CodeAnalysis.CSharp (3)
Symbols\NativeIntegerTypeSymbol.cs (3)
108builder.Add(new NativeIntegerMethodSymbol(this, underlyingMethod, associatedSymbol: null)); 116builder.Add(new NativeIntegerMethodSymbol(this, underlyingMethod, associatedSymbol: null)); 128(container, property, underlyingAccessor) => underlyingAccessor is null ? null : new NativeIntegerMethodSymbol(container, underlyingAccessor, property));
8 references to NativeIntegerMethodSymbol
Microsoft.CodeAnalysis.CSharp (8)
Emitter\Model\MethodSymbolAdapter.cs (1)
706if (underlyingMethodSymbol is NativeIntegerMethodSymbol)
Emitter\Model\PEModuleBuilder.cs (3)
1264Debug.Assert(!(methodSymbol.OriginalDefinition is NativeIntegerMethodSymbol)); 1265Debug.Assert(!(methodSymbol.ConstructedFrom is NativeIntegerMethodSymbol)); 1303else if (methodSymbol is NativeIntegerMethodSymbol { UnderlyingMethod: MethodSymbol underlyingMethod })
Symbols\MethodSymbol.cs (1)
1255if (other is NativeIntegerMethodSymbol nms)
Symbols\NativeIntegerTypeSymbol.cs (3)
406private readonly NativeIntegerMethodSymbol _container; 408internal NativeIntegerParameterSymbol(NativeIntegerTypeSymbol containingType, NativeIntegerMethodSymbol container, ParameterSymbol underlyingParameter) : base(underlyingParameter) 458Func<NativeIntegerTypeSymbol, NativeIntegerPropertySymbol, MethodSymbol?, NativeIntegerMethodSymbol?> getAccessor) :