java2xtend
java2xtend copied to clipboard
Newlines embedded in strings converted to real newlines
public class Test {
public String m() {
return "\n";
}
}
gets converted to
class Test {
def m(){
'
'
}
}
Which is compiling, but quite confusing (and can possibly break given difference in platform end of line encodings)