mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Completion in multi-catch
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@
|
||||
String name();
|
||||
}
|
||||
|
||||
@Column(<caret>)
|
||||
@Column<caret>
|
||||
@interface Annotation {
|
||||
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class MyClass {
|
||||
static class MyException extends Exception { }
|
||||
|
||||
void m() {
|
||||
try { } catch (MyException<caret>) { }
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class MyClass {
|
||||
static class MyException extends Exception { }
|
||||
|
||||
void m() {
|
||||
try { } catch (My<caret>) { }
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class MyClass {
|
||||
static class MyException extends Exception { }
|
||||
|
||||
void m() {
|
||||
try { } catch (MyException<caret> e) { }
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class MyClass {
|
||||
static class MyException extends Exception { }
|
||||
|
||||
void m() {
|
||||
try { } catch (My<caret> e) { }
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class MyClass {
|
||||
static class MyException extends Exception { }
|
||||
|
||||
void m() {
|
||||
try { } catch (RuntimeException | MyException<caret>) { }
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class MyClass {
|
||||
static class MyException extends Exception { }
|
||||
|
||||
void m() {
|
||||
try { } catch (RuntimeException | My<caret>) { }
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class MyClass {
|
||||
static class MyException extends Exception { }
|
||||
|
||||
void m() {
|
||||
try { } catch (RuntimeException | MyException<caret> e) { }
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class MyClass {
|
||||
static class MyException extends Exception { }
|
||||
|
||||
void m() {
|
||||
try { } catch (RuntimeException | My<caret> e) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user