1 instantiation of NativeIntegerTypeSymbol
Microsoft.CodeAnalysis.CSharp (1)
25 references to NativeIntegerTypeSymbol
Microsoft.CodeAnalysis.CSharp (21)
Symbols\NativeIntegerTypeSymbol.cs (15)
310private readonly NativeIntegerTypeSymbol _type;
313internal NativeIntegerTypeMap(NativeIntegerTypeSymbol type)
340private readonly NativeIntegerTypeSymbol _container;
344internal NativeIntegerMethodSymbol(NativeIntegerTypeSymbol container, MethodSymbol underlyingMethod, NativeIntegerPropertySymbol? associatedSymbol)
350NativeIntegerTypeSymbol.VerifyEquality(this, underlyingMethod);
407public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol.UnderlyingMethod);
437private readonly NativeIntegerTypeSymbol _containingType;
440internal NativeIntegerParameterSymbol(NativeIntegerTypeSymbol containingType, NativeIntegerMethodSymbol container, ParameterSymbol underlyingParameter) : base(underlyingParameter)
446NativeIntegerTypeSymbol.VerifyEquality(this, underlyingParameter);
469public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol._underlyingParameter);
490private readonly NativeIntegerTypeSymbol _container;
493NativeIntegerTypeSymbol container,
495Func<NativeIntegerTypeSymbol, NativeIntegerPropertySymbol, MethodSymbol?, NativeIntegerMethodSymbol?> getAccessor) :
502NativeIntegerTypeSymbol.VerifyEquality(this, underlyingProperty);
521public 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)