Completion of parameter name/types from the current file

This commit is contained in:
Valentin Kipyatkov
2015-06-18 17:51:47 +03:00
parent 22ad1389f5
commit 17500cef98
15 changed files with 233 additions and 69 deletions
@@ -0,0 +1,5 @@
fun foo(xxx: ((java.io.File) -> List<String>)?)
fun bar(x<caret>)
// ELEMENT: xxx
@@ -0,0 +1,7 @@
import java.io.File
fun foo(xxx: ((java.io.File) -> List<String>)?)
fun bar(xxx: ((File) -> List<String>)?<caret>)
// ELEMENT: xxx