[java] Implement Join lines action for text block

Support ending \, insert \n otherwise (to preserve semantics)
IDEA-337178 Join lines: support terminating \ in text blocks

GitOrigin-RevId: 2acb64443b83a27f29a969360b2cbbe34f7ea7d4
This commit is contained in:
Tagir Valeev
2024-02-01 16:16:56 +01:00
committed by intellij-monorepo-bot
parent 21b52d4e0c
commit 48cb7b5154
21 changed files with 221 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
class A {
void test() {
String s = """
Hello World!
""";
}
}