Using FIR is it possible to generate a function stub that is local to another annotated function? I...
j
Using FIR is it possible to generate a function stub that is local to another annotated function? I.e. say I have:
Copy code
@MyPlugin fun foo() {}
Is it possible to generate:
Copy code
@MyPlugin fun foo() {
  local fun callMyPlugin() {}
}
🚫 1