mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
i18n fix: traverse to the expression top level (IDEA-248707)
if one need to extract subpart of concatenation, it's required to extract a variable; similar to parts of polyadic expression GitOrigin-RevId: 46cd1a75303b72ea64e9694617fb43f4d3da5982
This commit is contained in:
committed by
intellij-monorepo-bot
parent
a8cd52076a
commit
af1c8c2574
+5
@@ -0,0 +1,5 @@
|
||||
class a {
|
||||
void foo(String s, int i, boolean b) {
|
||||
String desc = i18nizedExpr;
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class a {
|
||||
void foo(String s, int i, boolean b) {
|
||||
String desc = "Our " + s + " has " + (b ? i + " doo<caret>rs" : "many windows");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user