We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option to fill mandatory values (values doesn't have default arg)
The text was updated successfully, but these errors were encountered:
Is the Do not fill default arguments option different from what you want? Enabling the option yields the following results.
Do not fill default arguments
fun foo(s: String, i: Int = 0) fun main() { foo(<caret>) }
↓
fun foo(s: String, i: Int = 0) fun main() { foo(s = "") }
I am wondering if I should rename the option because I sometimes get confused with it and the Fill arguments without default values option.
Fill arguments without default values
Sorry, something went wrong.
No branches or pull requests
Option to fill mandatory values (values doesn't have default arg)
The text was updated successfully, but these errors were encountered: