Introduce Type Alias: Suggest initial name based on extracted type

This commit is contained in:
Alexey Sedunov
2016-07-19 18:08:29 +03:00
parent 0769d47f4b
commit 0a8490a068
7 changed files with 47 additions and 5 deletions
@@ -0,0 +1,4 @@
// SIBLING:
fun foo(list: <caret>List<(String?) -> Boolean>) {
}
@@ -0,0 +1,6 @@
typealias NullableStringToBooleanList = List<(String?) -> Boolean>
// SIBLING:
fun foo(list: NullableStringToBooleanList) {
}