1 instantiation of NativeIntegerTypeSymbol
Microsoft.CodeAnalysis.CSharp (1)
25 references to NativeIntegerTypeSymbol
Microsoft.CodeAnalysis.CSharp (21)
Symbols\NativeIntegerTypeSymbol.cs (15)
311private readonly NativeIntegerTypeSymbol _type;
314internal NativeIntegerTypeMap(NativeIntegerTypeSymbol type)
341private readonly NativeIntegerTypeSymbol _container;
345internal NativeIntegerMethodSymbol(NativeIntegerTypeSymbol container, MethodSymbol underlyingMethod, NativeIntegerPropertySymbol? associatedSymbol)
351NativeIntegerTypeSymbol.VerifyEquality(this, underlyingMethod);
408public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol.UnderlyingMethod);
435private readonly NativeIntegerTypeSymbol _containingType;
438internal NativeIntegerParameterSymbol(NativeIntegerTypeSymbol containingType, NativeIntegerMethodSymbol container, ParameterSymbol underlyingParameter) : base(underlyingParameter)
444NativeIntegerTypeSymbol.VerifyEquality(this, underlyingParameter);
467public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol._underlyingParameter);
485private readonly NativeIntegerTypeSymbol _container;
488NativeIntegerTypeSymbol container,
490Func<NativeIntegerTypeSymbol, NativeIntegerPropertySymbol, MethodSymbol?, NativeIntegerMethodSymbol?> getAccessor) :
497NativeIntegerTypeSymbol.VerifyEquality(this, underlyingProperty);
516public 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)