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,19 @@
package test;
public class Test {
public static void main(String[] args) {
System.out
// Comment
.println();
Test
// Comment1
.foo()
// Comment2
.indexOf("s")
}
public static String foo() {
return "";
}
}