mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
[java, fix] add missing STR processor IDEA-333509
GitOrigin-RevId: 10a42247d542ea3a67a1a9692c133adc0e25fc7c
This commit is contained in:
committed by
intellij-monorepo-bot
parent
aa70e4b6f4
commit
a9510604c5
@@ -0,0 +1,9 @@
|
||||
// "Add 'STR.' Processor" "true-preview"
|
||||
class a {
|
||||
void f() {
|
||||
String name = "world";
|
||||
String str = STR."""
|
||||
hello \{name}
|
||||
""" + "!";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// "Add 'STR.' Processor" "true-preview"
|
||||
class a {
|
||||
void f() {
|
||||
String name = "world";
|
||||
String str = STR."hello \{name}";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Add 'STR.' Processor" "true-preview"
|
||||
class a {
|
||||
void f() {
|
||||
String name = "world";
|
||||
String str = """
|
||||
<caret>hello \{name}
|
||||
""" + "!";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// "Add 'STR.' Processor" "true-preview"
|
||||
class a {
|
||||
void f() {
|
||||
String name = "world";
|
||||
String str = "<caret>hello \{name}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user