J2K: convert comments inside qualified expression correctly

This commit is contained in:
Natalia Ukhorskaya
2016-03-01 13:09:28 +03:00
parent 405b0b1df6
commit f1b6bf7817
6 changed files with 55 additions and 2 deletions
@@ -0,0 +1,14 @@
package test
object Test {
@JvmStatic fun main(args: Array<String>) {
println()// Comment
Test.foo()// Comment1
.indexOf("s")// Comment2
}
fun foo(): String {
return ""
}
}