Handle spaces around dot in type references and before type argument list
This commit is contained in:
committed by
Dmitry Jemerov
parent
4acb95acb5
commit
862631b2ec
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user