mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 13:07:01 +07:00
- introduced JavaEnterInInjectedTextBlockHandler GitOrigin-RevId: 7085ebb8d23177b11f49da17df2eb7df98f39b8a
10 lines
136 B
Java
10 lines
136 B
Java
import org.intellij.lang.annotations.Language;
|
|
|
|
class Test {
|
|
|
|
@Language("JAVA")
|
|
String block = """
|
|
int a = 1;<caret>
|
|
""";
|
|
|
|
} |