mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
- add <cursor> for tests - get rid of `Host` - reformat code GitOrigin-RevId: 0ca88901798a6f282089992f48fd1c88d26e0293
11 lines
141 B
Java
11 lines
141 B
Java
import org.intellij.lang.annotations.Language;
|
|
|
|
class Test {
|
|
|
|
@Language("JAVA")
|
|
String block = """
|
|
int a = 1;
|
|
<caret>
|
|
""";
|
|
|
|
} |