Only named parameters in completion when nothing else can be

This commit is contained in:
Valentin Kipyatkov
2014-08-05 16:52:39 +04:00
parent 3e051d617c
commit 83b33bd58b
7 changed files with 77 additions and 17 deletions
@@ -16,6 +16,7 @@
package org.jetbrains.jet.lang.psi;
import kotlin.jvm.KotlinSignature;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
@@ -28,6 +29,7 @@ public interface JetCallElement extends JetElement {
@Nullable
JetValueArgumentList getValueArgumentList();
@KotlinSignature("fun getValueArguments(): List<out ValueArgument>")
@NotNull
List<? extends ValueArgument> getValueArguments();