Hello, what do I need to do if I want my transform...
# compiler
a
Hello, what do I need to do if I want my transformer to skip code inside the specific lambda block?
Copy code
inline fun keepOriginal(fn:()->Unit){
  fn()
}

@ToBeProcessed
fun Component(){
  //code here will be modified by the compiler plugin
  keepOriginal{
     //code here will not be modified
  }
}
s
Just return the original function you get as a parameter instead of visiting it
thank you color 1