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