How can i see the compose compiler generated bytec...
# compose-desktop
s
How can i see the compose compiler generated bytecode in IDE (similar to suspend functions) ?
Show Kotlin Bytecode
still shows the compose annotation and not the transformed function with composer context as first argument.
Copy code
@Composable
   @NotNull
   public static final String composeTest(@NotNull String name) {
      Intrinsics.checkNotNullParameter(name, "name");
      return "Hello " + name;
   }
k
o
not sure if it is possible atm, but you could always use one of one many Java disassemblers and inspect compiled JARs
🙏 1