1 instantiation of NativeIntegerTypeSymbol
Microsoft.CodeAnalysis.CSharp (1)
25 references to NativeIntegerTypeSymbol
Microsoft.CodeAnalysis.CSharp (21)
Symbols\NativeIntegerTypeSymbol.cs (15)
309private readonly NativeIntegerTypeSymbol _type;
312internal NativeIntegerTypeMap(NativeIntegerTypeSymbol type)
339private readonly NativeIntegerTypeSymbol _container;
343internal NativeIntegerMethodSymbol(NativeIntegerTypeSymbol container, MethodSymbol underlyingMethod, NativeIntegerPropertySymbol? associatedSymbol)
349NativeIntegerTypeSymbol.VerifyEquality(this, underlyingMethod);
406public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol.UnderlyingMethod);
433private readonly NativeIntegerTypeSymbol _containingType;
436internal NativeIntegerParameterSymbol(NativeIntegerTypeSymbol containingType, NativeIntegerMethodSymbol container, ParameterSymbol underlyingParameter) : base(underlyingParameter)
442NativeIntegerTypeSymbol.VerifyEquality(this, underlyingParameter);
465public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol._underlyingParameter);
483private readonly NativeIntegerTypeSymbol _container;
486NativeIntegerTypeSymbol container,
488Func<NativeIntegerTypeSymbol, NativeIntegerPropertySymbol, MethodSymbol?, NativeIntegerMethodSymbol?> getAccessor) :
495NativeIntegerTypeSymbol.VerifyEquality(this, underlyingProperty);
514public 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)