mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 11:18:16 +07:00
[java] add default static imports
GitOrigin-RevId: 746402d1272aa0a410abbbfb18bd8571f545029c
This commit is contained in:
committed by
intellij-monorepo-bot
parent
696c7f7465
commit
131bfc4609
@@ -0,0 +1,9 @@
|
||||
// "Add 'STR.' Processor" "true-preview"
|
||||
class a {
|
||||
public static final String STR = "surprise!";
|
||||
|
||||
void f() {
|
||||
String name = "world";
|
||||
String str = StringTemplate.STR."hello \{name}";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Add 'STR.' Processor" "true-preview"
|
||||
class a {
|
||||
public static final String STR = "surprise!";
|
||||
|
||||
void f() {
|
||||
String name = "world";
|
||||
String str = "<caret>hello \{name}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user