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