Is it possible to create “sugar” for serialization...
# compiler
t
Is it possible to create “sugar” for serialization plugin? My visitor must be called before serialization visitor in that case. Is it possible?
👀 1
y
In your component registrar, I think registerExtension might accept some form of parameter, or I think you might need to call a method on the project's extension area that accepts a parameter related to order
Found it, it is
project.extensionArea.getExtensionPoint(IrGenerationExtension.extensionPointName).registerExtension(extension, LoadingOrder.XX project)
👍 1