2 implementations of ReflectionNotation
ILAssembler (2)
EntityRegistry.cs (2)
1234public string ReflectionNotation { get; } 1249public string ReflectionNotation { get; set; } = string.Empty;
5 references to ReflectionNotation
ILAssembler (5)
GrammarVisitor.cs (5)
889blob.WriteUTF8((name as EntityRegistry.IHasReflectionNotation)?.ReflectionNotation ?? ""); 1392blob.WriteSerializedString(notation.ReflectionNotation); 4623attributeName = reflectionNotation.ReflectionNotation; 4799blob.WriteSerializedString((VisitClassName(context.className()).Value as EntityRegistry.IHasReflectionNotation)?.ReflectionNotation ?? ""); 4830blob.WriteSerializedString(VisitClassName(className).Value is EntityRegistry.IHasReflectionNotation reflection ? reflection.ReflectionNotation : string.Empty);