Given a `IrSimpleFunction` I'm interested, how ca...
# compiler
a
Given a
IrSimpleFunction
I'm interested, how can I copy all its parameters and add to another new
IrSimpleFunction
I am building, along with its default values. I am currently using the extension
copyParameterDeclarationsFrom()
, does it copy default arguments as well? Also, is it possible to copy all but the first argument?
Ok, found a way..