3 instantiations of NativeIntegerMethodSymbol
Microsoft.CodeAnalysis.CSharp (3)
Symbols\NativeIntegerTypeSymbol.cs (3)
109builder.Add(new NativeIntegerMethodSymbol(this, underlyingMethod, associatedSymbol: null)); 117builder.Add(new NativeIntegerMethodSymbol(this, underlyingMethod, associatedSymbol: null)); 129(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)
727if (underlyingMethodSymbol is NativeIntegerMethodSymbol)
Emitter\Model\PEModuleBuilder.cs (3)
1267Debug.Assert(!(methodSymbol.OriginalDefinition is NativeIntegerMethodSymbol)); 1268Debug.Assert(!(methodSymbol.ConstructedFrom is NativeIntegerMethodSymbol)); 1306else if (methodSymbol is NativeIntegerMethodSymbol { UnderlyingMethod: MethodSymbol underlyingMethod })
Symbols\MethodSymbol.cs (1)
1259if (other is NativeIntegerMethodSymbol nms)
Symbols\NativeIntegerTypeSymbol.cs (3)
436private readonly NativeIntegerMethodSymbol _container; 438internal NativeIntegerParameterSymbol(NativeIntegerTypeSymbol containingType, NativeIntegerMethodSymbol container, ParameterSymbol underlyingParameter) : base(underlyingParameter) 490Func<NativeIntegerTypeSymbol, NativeIntegerPropertySymbol, MethodSymbol?, NativeIntegerMethodSymbol?> getAccessor) :