mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
Support ending \, insert \n otherwise (to preserve semantics) IDEA-337178 Join lines: support terminating \ in text blocks GitOrigin-RevId: 2acb64443b83a27f29a969360b2cbbe34f7ea7d4
9 lines
98 B
Java
9 lines
98 B
Java
class A {
|
|
void test() {
|
|
String s = """
|
|
<caret>Hello \\\
|
|
World!
|
|
""";
|
|
}
|
|
}
|