< prev index next >

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

Print this page
*** 164,10 ***
--- 164,12 ---
   * <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 incubating}           <td>use of incubating modules
+  * <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 assignment
   * <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
   * <tr><th scope="row">{@code opens}                <td>issues regarding module opens

*** 241,19 ***
--- 243,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 >