Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6529253

javac should be less aggressive in parsing referenced when -implicit:none is used

XMLWordPrintable

    • generic
    • generic

      Currently javac appears to try to parse the transitive closure of all referenced source files, which can impact performance and causes errors if any files are missing. This also happens with -implicit:none

      For example:

      ===
      >more *.java
      ::::::::::::::
      A.java
      ::::::::::::::

      public class A {
          public void foo(B b) {
              // empty
          }
      }
      ::::::::::::::
      B.java
      ::::::::::::::

      public class B {
          public int bar() {
              return new C().hashCode();
          }
      }
      >/java/re/j2se/1.7.0/latest/binaries/solaris-i586/bin/javac -implicit:none A.java
      ./B.java:4: cannot find symbol
      symbol : class C
      location: class B
              return new C().hashCode();
                         ^
      1 error
      ===

      C.java is not required to determine that A.java is a valid Java source file and to compile it, so C.java being unavailable should not cause an error.

            jjg Jonathan Gibbons
            andreas Andreas Sterbenz
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: