Is there an intention to generate argument names t...
# intellij
d
Is there an intention to generate argument names to a function call before they're supplied? like
Add names to call arguments
, but before any arguments are supplied... outputting something like
Copy code
val foo = bar(
        a = TODO(),
        b = TODO(),
        // etc
)