When I modify the signature of a function in IR, t...
# compiler
t
When I modify the signature of a function in IR, the IR dump contains the modification, everything works well if I use that function in the project in which it was modified. As soon as I try to create a JAR, publish it to Maven and then use from another project, the signature modification seems to be missing. Is there some other thing I have to modify besides IR?
d
Metadata is created using FIR You probably can also modify it, which is accessible via
IrMetadataSourceOwner.metadata as? <http://FirMetadataSource.XXX|FirMetadataSource.XXX>
, but I can't guarantee that it will work
thank you color 1