IDEA-384355 [java]: care about escaped trailing whitespace

GitOrigin-RevId: 858ba50866cad324a76628b4a19268431c00d1f7
This commit is contained in:
Bas Leijdekkers
2026-02-11 14:32:13 +00:00
committed by intellij-monorepo-bot
parent 7e4d06fb96
commit 61498b7d65
2 changed files with 10 additions and 7 deletions
@@ -34,9 +34,9 @@ public class MapBackTextBlockTextRangeTest extends LightPlatformCodeInsightTestC
doTest("""
""\"
\s
foo \t\f
foo \t\f\\uu0020
\s
""\"""", 0, 6, new TextRange(9, 24), "\n foo \t\f\n \n");
""\"""", 0, 6, new TextRange(9, 31), "\n foo \t\f\\uu0020\n \n");
}
public void testIndentNonZero() {