[java-highlighting] IDEA-363617 Support JEP 494: Module Import Declarations (Second Preview)

- support shadowing module imports by package-on-demand

GitOrigin-RevId: 643fc10bcbfee2f1d41ec02e624b30bc3a48e4bb
This commit is contained in:
Mikhail Pyltsin
2024-12-04 14:22:37 +01:00
committed by intellij-monorepo-bot
parent 667148b987
commit 9e62b515e2
15 changed files with 221 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import module my.source.moduleB;
import my.source.moduleA.Imported;
class ModuleImportWithSingleImport {
Imported <caret>module;
}