< prev index next >

src/jdk.compiler/share/classes/module-info.java

Print this page
*** 163,10 ***
--- 163,12 ---
   * <tr><th scope="row">{@code exports}              <td>issues regarding module exports
   * <tr><th scope="row">{@code fallthrough}          <td>falling through from one case of a {@code switch} statement to
   *                                                      the next
   * <tr><th scope="row">{@code finally}              <td>{@code finally} clauses that do not terminate normally
   * <tr><th scope="row">{@code identity}             <td>use of a value-based class where an identity class is expected
+  * <tr><th scope="row">{@code initialization}       <td>code in identity classes that wouldn't be allowed in early
+  *                                                      construction due to a {@code this} dependency.
   * <tr><th scope="row">{@code lossy-conversions}    <td>possible lossy conversions in compound assignments or bit shifts
   *                                                      (more than \u00B131 bits for integers or \u00B163 bits for longs)
   * <tr><th scope="row">{@code missing-explicit-ctor} <td>missing explicit constructors in public and protected classes
   *                                                      in exported packages
   * <tr><th scope="row">{@code module}               <td>module system related issues

*** 257,19 ***
--- 259,21 ---
          jdk.jshell,
          jdk.internal.md;
      exports com.sun.tools.javac.resources to
          jdk.jshell;
      exports com.sun.tools.javac.code to
+         jdk.jdeps,
          jdk.javadoc,
          jdk.jshell;
      exports com.sun.tools.javac.comp to
          jdk.javadoc,
          jdk.jshell;
      exports com.sun.tools.javac.file to
          jdk.jdeps,
          jdk.javadoc;
      exports com.sun.tools.javac.jvm to
+         jdk.jdeps,
          jdk.javadoc;
      exports com.sun.tools.javac.main to
          jdk.javadoc,
          jdk.jshell;
      exports com.sun.tools.javac.model to
< prev index next >