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)
726if (underlyingMethodSymbol is NativeIntegerMethodSymbol)
Emitter\Model\PEModuleBuilder.cs (3)
1416Debug.Assert(!(methodSymbol.OriginalDefinition is NativeIntegerMethodSymbol)); 1417Debug.Assert(!(methodSymbol.ConstructedFrom is NativeIntegerMethodSymbol)); 1455else if (methodSymbol is NativeIntegerMethodSymbol { UnderlyingMethod: MethodSymbol underlyingMethod })
Symbols\MethodSymbol.cs (1)
1265if (other is NativeIntegerMethodSymbol nms)
Symbols\NativeIntegerTypeSymbol.cs (3)
434private readonly NativeIntegerMethodSymbol _container; 436internal NativeIntegerParameterSymbol(NativeIntegerTypeSymbol containingType, NativeIntegerMethodSymbol container, ParameterSymbol underlyingParameter) : base(underlyingParameter) 488Func<NativeIntegerTypeSymbol, NativeIntegerPropertySymbol, MethodSymbol?, NativeIntegerMethodSymbol?> getAccessor) :