1 instantiation of NativeIntegerTypeSymbol
Microsoft.CodeAnalysis.CSharp (1)
25 references to NativeIntegerTypeSymbol
Microsoft.CodeAnalysis.CSharp (21)
Symbols\NativeIntegerTypeSymbol.cs (15)
312private readonly NativeIntegerTypeSymbol _type;
315internal NativeIntegerTypeMap(NativeIntegerTypeSymbol type)
342private readonly NativeIntegerTypeSymbol _container;
346internal NativeIntegerMethodSymbol(NativeIntegerTypeSymbol container, MethodSymbol underlyingMethod, NativeIntegerPropertySymbol? associatedSymbol)
352NativeIntegerTypeSymbol.VerifyEquality(this, underlyingMethod);
413public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol.UnderlyingMethod);
443private readonly NativeIntegerTypeSymbol _containingType;
446internal NativeIntegerParameterSymbol(NativeIntegerTypeSymbol containingType, NativeIntegerMethodSymbol container, ParameterSymbol underlyingParameter) : base(underlyingParameter)
452NativeIntegerTypeSymbol.VerifyEquality(this, underlyingParameter);
475public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol._underlyingParameter);
496private readonly NativeIntegerTypeSymbol _container;
499NativeIntegerTypeSymbol container,
501Func<NativeIntegerTypeSymbol, NativeIntegerPropertySymbol, MethodSymbol?, NativeIntegerMethodSymbol?> getAccessor) :
508NativeIntegerTypeSymbol.VerifyEquality(this, underlyingProperty);
527public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol._underlyingProperty);
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (2)
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (2)