src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Target.java
changeset 50740 edf11e5dc766
parent 50738 6cc2dc161c64
parent 50735 2f2af62dfac7
child 50892 a5557f24b4d4
equal deleted inserted replaced
50739:4bedc9338137 50740:edf11e5dc766
   165      *  module and targeting 11 or newer.
   165      *  module and targeting 11 or newer.
   166      */
   166      */
   167     public boolean allApiModulesAreRoots() {
   167     public boolean allApiModulesAreRoots() {
   168         return compareTo(JDK1_11) >= 0;
   168         return compareTo(JDK1_11) >= 0;
   169     }
   169     }
       
   170 
       
   171     /** Does the target VM support nestmate access?
       
   172      */
       
   173     public boolean hasNestmateAccess() {
       
   174         return compareTo(JDK1_11) >= 0;
       
   175     }
       
   176 
       
   177     /** Does the target VM support virtual private invocations?
       
   178      */
       
   179     public boolean hasVirtualPrivateInvoke() {
       
   180         return compareTo(JDK1_11) >= 0;
       
   181     }
       
   182 
   170 }
   183 }