damian
03/24/2023, 12:35 AMIrIntrinsicExtension
on other platforms - maybe an issue tracking it? Curious since I would like to implement an intrinsic, but information on this is sparse. It's also kind of disappointing that it has to be done in a platform-specific way, but understandable. Or more generally - is there any other way, current or planned, to implement an intrinsic for a function after inlining (in order to preserve the reified type)?IrCall
, which unfortunately seems kind of limiting.sandwwraith
04/04/2023, 2:45 PMdamian
04/04/2023, 10:06 PMfun <T> generateSomeIntrospection()
, I couldn't also build upon that in a inline fun <reified T> ServiceProvider.get(): T
in upstream library code that could itself call generateSomeIntrospection<T>()
without also intrisifying get
.
Such a feature could really open up some doors for plugin authors, I think. Do you think it's worth filing an FR in YouTrack for it?