jw
02/20/2025, 8:53 PMIvan Kylchik
02/21/2025, 5:32 PMjw
02/21/2025, 5:35 PMremember { }
function is inline
, and its body contains unnecessary function calls that are used solely for debugging. I would like to remove them in our release builds.
I was already told there is no way to manipulate the entire IR tree of my transitive dependency graph during linking (https://kotlinlang.slack.com/archives/C7L3JB43G/p1739217898811039), so I'm looking at alternatives. I was hoping a compiler plugin that I apply to every module would get me 99% of the way there, but since I don't see the inlined IR, I cannot actually remove them from anywhere.Manuel Wrage
03/09/2025, 12:02 PM