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);
409public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol.UnderlyingMethod);
439private readonly NativeIntegerTypeSymbol _containingType;
442internal NativeIntegerParameterSymbol(NativeIntegerTypeSymbol containingType, NativeIntegerMethodSymbol container, ParameterSymbol underlyingParameter) : base(underlyingParameter)
448NativeIntegerTypeSymbol.VerifyEquality(this, underlyingParameter);
471public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol._underlyingParameter);
492private readonly NativeIntegerTypeSymbol _container;
495NativeIntegerTypeSymbol container,
497Func<NativeIntegerTypeSymbol, NativeIntegerPropertySymbol, MethodSymbol?, NativeIntegerMethodSymbol?> getAccessor) :
504NativeIntegerTypeSymbol.VerifyEquality(this, underlyingProperty);
523public 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)