Java: fix selection behaviour for String Templates (IDEA-333906)

GitOrigin-RevId: 0727e9c5b4a56d752bc38d7fc6fa22ca676dd9ba
This commit is contained in:
Bas Leijdekkers
2023-10-31 17:17:28 +01:00
committed by intellij-monorepo-bot
parent 8925dcb722
commit 2ebaab02d1
28 changed files with 281 additions and 43 deletions

View File

@@ -0,0 +1,11 @@
class StringTemplate1 {
String x(int i) {
return STR.<selection>"""
one <caret>two
three \{i}
four five six \{i}
seven eight nine
"""</selection>;
}
}