I've created a grammer for SOQL, a SQL-like language. I validate all the fields throughout the entire query in my grammer class and want to store a reference to their database schema field on the custom AST node I created for fields.
It would be very helpful if Object was an available Type on a custom AST node property when its PropertyType is set to Simple or SimpleList. With this option, I could store the schema field references that will be needed later, say by a QuickInfo provider, rather than having to rediscover them.
Right now, I've created a simple property as a string and then manually change it to Object in the generated AST Node class. But it would be preferrable to have the property generated as Object natively.
Thanks, Rick
[Modified 4 days ago]