2 implementations of IHasReflectionNotation
ILAssembler (2)
EntityRegistry.cs (2)
1179
public sealed class TypeDefinitionEntity : TypeEntity,
IHasReflectionNotation
1241
public sealed class TypeReferenceEntity(EntityBase resolutionScope, string @namespace, string name) : TypeEntity,
IHasReflectionNotation
5 references to IHasReflectionNotation
ILAssembler (5)
GrammarVisitor.cs (5)
889
blob.WriteUTF8((name as EntityRegistry.
IHasReflectionNotation
)?.ReflectionNotation ?? "");
1390
if (VisitClassName(className).Value is EntityRegistry.
IHasReflectionNotation
notation)
4621
if (context.typeSpec() is CILParser.TypeSpecContext typeSpec && VisitTypeSpec(typeSpec).Value is EntityRegistry.
IHasReflectionNotation
reflectionNotation)
4799
blob.WriteSerializedString((VisitClassName(context.className()).Value as EntityRegistry.
IHasReflectionNotation
)?.ReflectionNotation ?? "");
4830
blob.WriteSerializedString(VisitClassName(className).Value is EntityRegistry.
IHasReflectionNotation
reflection ? reflection.ReflectionNotation : string.Empty);