Add intention to add missing components to destructuring assignment #KT-16258 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
4d47c0fd63
commit
8d425a6f94
+5
@@ -0,0 +1,5 @@
|
||||
data class Foo(val a: String, val b: String, val c: String)
|
||||
|
||||
fun bar(f: Foo) {
|
||||
val (a, b<spot>, c</spot>) = f
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
data class Foo(val a: String, val b: String, val c: String)
|
||||
|
||||
fun bar(f: Foo) {
|
||||
val (a, b) = f
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
This intention adds missing components in a destructuring declaration.
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user