Handle spaces around dot in type references and before type argument list

This commit is contained in:
Ilya Zorin
2017-05-31 20:06:53 +03:00
committed by Dmitry Jemerov
parent 4acb95acb5
commit 862631b2ec
6 changed files with 30 additions and 0 deletions
@@ -0,0 +1,4 @@
fun some(param: kotlin.Int): kotlin.Int {
val num: kotlin.Int = 0
return num
}
@@ -0,0 +1,4 @@
fun some(param: kotlin . Int): kotlin .Int {
val num: kotlin. Int = 0
return num
}
@@ -0,0 +1,4 @@
fun some(param: List<Int>): List<Int> {
val list = emptyList<Int>()
return list
}
@@ -0,0 +1,4 @@
fun some(param: List <Int>): List <Int> {
val list = emptyList <Int>()
return list
}