Don't set parameter names and register unresolved error correctly
This commit is contained in:
+19
-10
@@ -19,9 +19,11 @@ package org.jetbrains.kotlin.idea.editor.fixers
|
|||||||
import com.intellij.lang.SmartEnterProcessorWithFixers
|
import com.intellij.lang.SmartEnterProcessorWithFixers
|
||||||
import com.intellij.openapi.editor.Editor
|
import com.intellij.openapi.editor.Editor
|
||||||
import com.intellij.psi.PsiElement
|
import com.intellij.psi.PsiElement
|
||||||
|
import com.intellij.psi.impl.source.tree.LeafPsiElement
|
||||||
import org.jetbrains.kotlin.builtins.KotlinBuiltIns
|
import org.jetbrains.kotlin.builtins.KotlinBuiltIns
|
||||||
import org.jetbrains.kotlin.idea.caches.resolve.analyze
|
import org.jetbrains.kotlin.idea.caches.resolve.analyze
|
||||||
import org.jetbrains.kotlin.idea.editor.KotlinSmartEnterHandler
|
import org.jetbrains.kotlin.idea.editor.KotlinSmartEnterHandler
|
||||||
|
import org.jetbrains.kotlin.lexer.KtTokens
|
||||||
import org.jetbrains.kotlin.psi.KtCallExpression
|
import org.jetbrains.kotlin.psi.KtCallExpression
|
||||||
import org.jetbrains.kotlin.psi.psiUtil.endOffset
|
import org.jetbrains.kotlin.psi.psiUtil.endOffset
|
||||||
import org.jetbrains.kotlin.resolve.calls.callUtil.getResolvedCall
|
import org.jetbrains.kotlin.resolve.calls.callUtil.getResolvedCall
|
||||||
@@ -29,8 +31,15 @@ import org.jetbrains.kotlin.resolve.lazy.BodyResolveMode
|
|||||||
|
|
||||||
class KotlinLastLambdaParameterFixer : SmartEnterProcessorWithFixers.Fixer<KotlinSmartEnterHandler>() {
|
class KotlinLastLambdaParameterFixer : SmartEnterProcessorWithFixers.Fixer<KotlinSmartEnterHandler>() {
|
||||||
override fun apply(editor: Editor, processor: KotlinSmartEnterHandler, element: PsiElement) {
|
override fun apply(editor: Editor, processor: KotlinSmartEnterHandler, element: PsiElement) {
|
||||||
if (element !is KtCallExpression) return
|
if (element is KtCallExpression) {
|
||||||
|
addBracesIfNecessary(editor, element, processor)
|
||||||
|
}
|
||||||
|
else if (element is LeafPsiElement) {
|
||||||
|
registerErrorIfNecessary(element, processor)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun addBracesIfNecessary(editor: Editor, element: KtCallExpression, processor: KotlinSmartEnterHandler) {
|
||||||
val bindingContext = element.analyze(BodyResolveMode.PARTIAL)
|
val bindingContext = element.analyze(BodyResolveMode.PARTIAL)
|
||||||
val resolvedCall = element.getResolvedCall(bindingContext) ?: return
|
val resolvedCall = element.getResolvedCall(bindingContext) ?: return
|
||||||
|
|
||||||
@@ -47,16 +56,16 @@ class KotlinLastLambdaParameterFixer : SmartEnterProcessorWithFixers.Fixer<Kotli
|
|||||||
offset++
|
offset++
|
||||||
}
|
}
|
||||||
|
|
||||||
var arity = type.constructor.parameters.size - 1
|
doc.insertString(offset, "{ }")
|
||||||
if (KotlinBuiltIns.isExactExtensionFunctionType(type)) arity--
|
processor.registerUnresolvedError(offset + 2)
|
||||||
|
|
||||||
if (arity <= 1) {
|
|
||||||
doc.insertString(offset, "{\n}")
|
|
||||||
} else {
|
|
||||||
val params = (1..arity).map { "x$it" }.joinToString(", ")
|
|
||||||
doc.insertString(offset, "{ $params ->\n}")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun registerErrorIfNecessary(element: LeafPsiElement, processor: KotlinSmartEnterHandler) {
|
||||||
|
if(element.elementType != KtTokens.LBRACE) return
|
||||||
|
if(element.parent?.parent?.parent?.parent !is KtCallExpression) return
|
||||||
|
|
||||||
|
processor.registerUnresolvedError(element.endOffset + 1)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1281,7 +1281,7 @@ class SmartEnterTest : KotlinLightCodeInsightFixtureTestCase() {
|
|||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
|
|
||||||
fun testLambdaParamImplicit1() = doFileTest(
|
fun testLambdaParam() = doFileTest(
|
||||||
"""
|
"""
|
||||||
fun foo(a: Any, block: () -> Unit) {
|
fun foo(a: Any, block: () -> Unit) {
|
||||||
}
|
}
|
||||||
@@ -1294,49 +1294,7 @@ class SmartEnterTest : KotlinLightCodeInsightFixtureTestCase() {
|
|||||||
fun foo(a: Any, block: () -> Unit) {
|
fun foo(a: Any, block: () -> Unit) {
|
||||||
}
|
}
|
||||||
fun test() {
|
fun test() {
|
||||||
foo(Any()) {
|
foo(Any()) { <caret> }
|
||||||
<caret>
|
|
||||||
}
|
|
||||||
}
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
|
|
||||||
fun testLambdaParamImplicit2() = doFileTest(
|
|
||||||
"""
|
|
||||||
fun foo(a: Any, block: (Any) -> Unit) {
|
|
||||||
}
|
|
||||||
fun test() {
|
|
||||||
foo(Any()<caret>
|
|
||||||
}
|
|
||||||
"""
|
|
||||||
,
|
|
||||||
"""
|
|
||||||
fun foo(a: Any, block: (Any) -> Unit) {
|
|
||||||
}
|
|
||||||
fun test() {
|
|
||||||
foo(Any()) {
|
|
||||||
<caret>
|
|
||||||
}
|
|
||||||
}
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
|
|
||||||
fun testLambdaParamExplicit1() = doFileTest(
|
|
||||||
"""
|
|
||||||
fun foo(a: Any, block: (Any, Any) -> Unit) {
|
|
||||||
}
|
|
||||||
fun test() {
|
|
||||||
foo(Any()<caret>)
|
|
||||||
}
|
|
||||||
"""
|
|
||||||
,
|
|
||||||
"""
|
|
||||||
fun foo(a: Any, block: (Any, Any) -> Unit) {
|
|
||||||
}
|
|
||||||
fun test() {
|
|
||||||
foo(Any()) { x1, x2 ->
|
|
||||||
<caret>
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
@@ -1354,49 +1312,7 @@ class SmartEnterTest : KotlinLightCodeInsightFixtureTestCase() {
|
|||||||
fun foo(a: Any, block: Any.() -> Unit) {
|
fun foo(a: Any, block: Any.() -> Unit) {
|
||||||
}
|
}
|
||||||
fun test() {
|
fun test() {
|
||||||
foo(Any()) {
|
foo(Any()) { <caret> }
|
||||||
<caret>
|
|
||||||
}
|
|
||||||
}
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
|
|
||||||
fun testExtensionLambdaParamImplicit2() = doFileTest(
|
|
||||||
"""
|
|
||||||
fun foo(a: Any, block: Any.(Any) -> Unit) {
|
|
||||||
}
|
|
||||||
fun test() {
|
|
||||||
foo(Any()<caret>
|
|
||||||
}
|
|
||||||
"""
|
|
||||||
,
|
|
||||||
"""
|
|
||||||
fun foo(a: Any, block: Any.(Any) -> Unit) {
|
|
||||||
}
|
|
||||||
fun test() {
|
|
||||||
foo(Any()) {
|
|
||||||
<caret>
|
|
||||||
}
|
|
||||||
}
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
|
|
||||||
fun testExtensionLambdaParamExplicit1() = doFileTest(
|
|
||||||
"""
|
|
||||||
fun foo(a: Any, block: Any.(Any, Any) -> Unit) {
|
|
||||||
}
|
|
||||||
fun test() {
|
|
||||||
foo(Any()<caret>)
|
|
||||||
}
|
|
||||||
"""
|
|
||||||
,
|
|
||||||
"""
|
|
||||||
fun foo(a: Any, block: Any.(Any, Any) -> Unit) {
|
|
||||||
}
|
|
||||||
fun test() {
|
|
||||||
foo(Any()) { x1, x2 ->
|
|
||||||
<caret>
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user