Call with named arguments
Note that all positional arguments are always followed by all named arguments.
So to call: Com.f(10, 20, A: 30, B: 40), invoke this function as follows:
Com.f().callWithNamedArgs(["A", "B"], 10, 20, 30, 40);
Argument names are case-insensitive
See Implementation
Call with named arguments
Note that all positional arguments are always followed by all named arguments.
So to call: Com.f(10, 20, A: 30, B: 40), invoke this function as follows:
Argument names are case-insensitive