@@ -420,14 +420,30 @@ protected Symtab(Context context) throws CompletionFailure {
420
420
missingInfoHandler ,
421
421
target .runtimeUseNestAccess ());
422
422
423
+ noModule = new ModuleSymbol (names .empty , null ) {
424
+ @ Override public boolean isNoModule () {
425
+ return true ;
426
+ }
427
+ };
428
+ addRootPackageFor (noModule );
429
+
430
+ Source source = Source .instance (context );
431
+ if (Feature .MODULES .allowedInSource (source )) {
432
+ java_base = enterModule (names .java_base );
433
+ //avoid completing java.base during the Symtab initialization
434
+ java_base .completer = Completer .NULL_COMPLETER ;
435
+ java_base .visiblePackages = Collections .emptyMap ();
436
+ } else {
437
+ java_base = noModule ;
438
+ }
439
+
423
440
// create the basic builtin symbols
424
441
unnamedModule = new ModuleSymbol (names .empty , null ) {
425
442
{
426
443
directives = List .nil ();
427
444
exports = List .nil ();
428
445
provides = List .nil ();
429
446
uses = List .nil ();
430
- ModuleSymbol java_base = enterModule (names .java_base );
431
447
com .sun .tools .javac .code .Directive .RequiresDirective d =
432
448
new com .sun .tools .javac .code .Directive .RequiresDirective (java_base ,
433
449
EnumSet .of (com .sun .tools .javac .code .Directive .RequiresFlag .MANDATED ));
@@ -447,7 +463,6 @@ public String toString() {
447
463
exports = List .nil ();
448
464
provides = List .nil ();
449
465
uses = List .nil ();
450
- ModuleSymbol java_base = enterModule (names .java_base );
451
466
com .sun .tools .javac .code .Directive .RequiresDirective d =
452
467
new com .sun .tools .javac .code .Directive .RequiresDirective (java_base ,
453
468
EnumSet .of (com .sun .tools .javac .code .Directive .RequiresFlag .MANDATED ));
@@ -456,13 +471,6 @@ public String toString() {
456
471
};
457
472
addRootPackageFor (errModule );
458
473
459
- noModule = new ModuleSymbol (names .empty , null ) {
460
- @ Override public boolean isNoModule () {
461
- return true ;
462
- }
463
- };
464
- addRootPackageFor (noModule );
465
-
466
474
noSymbol = new TypeSymbol (NIL , 0 , names .empty , Type .noType , rootPackage ) {
467
475
@ Override @ DefinedBy (Api .LANGUAGE_MODEL )
468
476
public <R , P > R accept (ElementVisitor <R , P > v , P p ) {
@@ -526,16 +534,6 @@ public <R, P> R accept(ElementVisitor<R, P> v, P p) {
526
534
// Enter symbol for the errSymbol
527
535
scope .enter (errSymbol );
528
536
529
- Source source = Source .instance (context );
530
- if (Feature .MODULES .allowedInSource (source )) {
531
- java_base = enterModule (names .java_base );
532
- //avoid completing java.base during the Symtab initialization
533
- java_base .completer = Completer .NULL_COMPLETER ;
534
- java_base .visiblePackages = Collections .emptyMap ();
535
- } else {
536
- java_base = noModule ;
537
- }
538
-
539
537
// Get the initial completer for ModuleSymbols from Modules
540
538
moduleCompleter = Modules .instance (context ).getCompleter ();
541
539
0 commit comments