You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there are several methods to choose from with the same initial types of arguments and for the compliant to press Tab and not Enter, then in addition to the completion of the method, a type will be added.
For reproduction:
1.
fun test(num1: Int) = 1
fun test(num1: Int, num2: Int) = 2
Start typing test press Tab.
Result:
test(Int
Expected:
test(
The text was updated successfully, but these errors were encountered:
If there are several methods to choose from with the same initial types of arguments and for the compliant to press
Tab
and notEnter
, then in addition to the completion of the method, a type will be added.For reproduction:
1.
test
pressTab
.Result:
Expected:
The text was updated successfully, but these errors were encountered: