Select lambda after other args when it's outside argument list (KT-21214)
#KT-21214 Fixed
This commit is contained in:
committed by
Nikolay Krasko
parent
976a158ce1
commit
809cc220ed
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
fo<caret>o(1, 2) {
|
||||
1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
<selection>fo<caret>o</selection>(1, 2) {
|
||||
1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
<selection>fo<caret>o(1, 2)</selection> {
|
||||
1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
<selection> fo<caret>o(1, 2) {
|
||||
1
|
||||
}
|
||||
</selection>}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
fo<caret>o {
|
||||
1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
<selection>fo<caret>o</selection> {
|
||||
1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
<selection> fo<caret>o {
|
||||
1
|
||||
}
|
||||
</selection>}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
fo<caret>o({
|
||||
1
|
||||
})
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
<selection>fo<caret>o</selection>({
|
||||
1
|
||||
})
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
<selection> fo<caret>o({
|
||||
1
|
||||
})
|
||||
</selection>}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
fo<caret>o() {
|
||||
1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
<selection>fo<caret>o</selection>() {
|
||||
1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
<selection>fo<caret>o()</selection> {
|
||||
1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo() {
|
||||
<selection> fo<caret>o() {
|
||||
1
|
||||
}
|
||||
</selection>}
|
||||
Reference in New Issue
Block a user