4 overrides of TypeWithAnnotations
Microsoft.CodeAnalysis.CSharp (4)
Symbols\Metadata\PE\PEEventSymbol.cs (1)
329
public override TypeWithAnnotations
TypeWithAnnotations
Symbols\Retargeting\RetargetingEventSymbol.cs (1)
49
public override TypeWithAnnotations
TypeWithAnnotations
Symbols\Source\SourceEventSymbol.cs (1)
91
public abstract override TypeWithAnnotations
TypeWithAnnotations
{ get; }
Symbols\SubstitutedEventSymbol.cs (1)
24
public override TypeWithAnnotations
TypeWithAnnotations
18 references to TypeWithAnnotations
Microsoft.CodeAnalysis.CSharp (18)
FlowAnalysis\NullableWalker.cs (1)
731
symbolType = e.
TypeWithAnnotations
;
Symbols\EventSymbol.cs (3)
58
public TypeSymbol Type =>
TypeWithAnnotations
.Type;
287
if (DeriveUseSiteInfoFromType(ref result, this.
TypeWithAnnotations
, AllowedRequiredModifierType.None))
298
if (this.
TypeWithAnnotations
.GetUnificationUseSiteDiagnosticRecursive(ref diagnosticInfo, this, ref unificationCheckedTypes))
Symbols\PublicModel\EventSymbol.cs (2)
31
Interlocked.CompareExchange(ref _lazyType, _underlying.
TypeWithAnnotations
.GetPublicSymbol(), null);
38
CodeAnalysis.NullableAnnotation IEventSymbol.NullableAnnotation => _underlying.
TypeWithAnnotations
.ToPublicAnnotation();
Symbols\Retargeting\RetargetingEventSymbol.cs (1)
53
return this.RetargetingTranslator.Retarget(_underlyingEvent.
TypeWithAnnotations
, RetargetOptions.RetargetPrimitiveTypesByTypeCode);
Symbols\Retargeting\RetargetingSymbolTranslator.cs (1)
1112
var targetType = Retarget(@event.
TypeWithAnnotations
, RetargetOptions.RetargetPrimitiveTypesByTypeCode);
Symbols\Source\SourceEventSymbol.cs (1)
635
eventWithCustomModifiers.
TypeWithAnnotations
.CustomModifiers);
Symbols\Source\SourceMemberContainerSymbol_ImplementationChecks.cs (4)
953
TypeWithAnnotations overridingMemberType = overridingEvent.
TypeWithAnnotations
;
954
TypeWithAnnotations overriddenMemberType = overriddenEvent.
TypeWithAnnotations
;
1544
if (!conversions.HasAnyNullabilityImplicitConversion(overriddenEvent.
TypeWithAnnotations
, overridingEvent.
TypeWithAnnotations
))
Symbols\Source\SourceMemberFieldSymbol.cs (2)
473
type = TypeWithAnnotations.Create(tokenTableType.Construct(ImmutableArray.Create(@event.
TypeWithAnnotations
)));
477
type = @event.
TypeWithAnnotations
;
Symbols\SubstitutedEventSymbol.cs (1)
30
var type = _containingType.TypeSubstitution.SubstituteType(OriginalDefinition.
TypeWithAnnotations
);
Symbols\Symbol.cs (1)
1639
builder.AddValue(((EventSymbol)this).
TypeWithAnnotations
);
Symbols\SymbolExtensions.cs (1)
513
returnType = @event.
TypeWithAnnotations
;