< prev index next >

src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Target.java

Print this page

        

*** 149,159 **** */ public String multiReleaseValue() { return Integer.toString(this.ordinal() - Target.JDK1_1.ordinal() + 1); } ! /** Does the target VM support nestmates? */ ! public boolean hasNestmates() { return compareTo(JDK1_10) >= 0; } } --- 149,166 ---- */ public String multiReleaseValue() { return Integer.toString(this.ordinal() - Target.JDK1_1.ordinal() + 1); } ! /** Does the target VM support nestmate access? */ ! public boolean hasNestmateAccess() { return compareTo(JDK1_10) >= 0; } + + /** Does the target VM support virtual private invocations? + */ + public boolean hasVirtualPrivateInvoke() { + return compareTo(JDK1_10) >= 0; + } + }
< prev index next >