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