mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 23:50:57 +07:00
Adjust the completion variants for switch statements and expressions GitOrigin-RevId: 05119897b0eb72bb875097cd197f376534d15db9
21 lines
250 B
Java
21 lines
250 B
Java
|
|
class Main {
|
|
|
|
void f(Object o) {
|
|
switch(o) {
|
|
case Integer i, null<caret>
|
|
}
|
|
}
|
|
|
|
void g(Object o) {
|
|
switch(o) {
|
|
case null<caret>, Integer i
|
|
}
|
|
}
|
|
|
|
void h(Object o) {
|
|
switch(o) {
|
|
case null<caret>
|
|
}
|
|
}
|
|
} |