[java-completion] IJ-CR-129761 IDEA-349764 Suggest a full catch section

- tests are extracted
- CatchLookupElement works in dumb-mode

GitOrigin-RevId: 75b5c34ce124a4315a8a73c020ac08f01ecd9487
This commit is contained in:
Mikhail Pyltsin
2024-03-28 16:58:10 +01:00
committed by intellij-monorepo-bot
parent b478a4dc36
commit ba0a409500
27 changed files with 596 additions and 601 deletions

View File

@@ -0,0 +1,6 @@
class X{
public void test() {
try {
} c<caret>
}
}