mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
[java] adds support for Java 9's improved try-with-resources (IDEA-140266)
PSI, parser, highlighting, exception analysis, control flow, completion.
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
class MyClass {
|
||||
void f() {
|
||||
String response;
|
||||
AutoCloseable resource;
|
||||
try (re<caret>) {
|
||||
}
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
class MyClass {
|
||||
void f() {
|
||||
String response;
|
||||
AutoCloseable resource;
|
||||
try (resource<caret>) {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user