src/share/classes/java/lang/invoke/MethodHandles.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File jdk Cdiff src/share/classes/java/lang/invoke/MethodHandles.java

src/share/classes/java/lang/invoke/MethodHandles.java

Print this page
rev 10274 : 8050052: Small cleanups in java.lang.invoke code
Reviewed-by: ?
rev 10275 : 8050053: Improve caching of different invokers
Reviewed-by: vlivanov, ?
Contributed-by: john.r.rose@oracle.com
rev 10276 : 8050166: Get rid of some package-private methods on arguments in j.l.i.MethodHandle
Reviewed-by: vlivanov, ?
Contributed-by: john.r.rose@oracle.com
rev 10277 : 8050173: Add j.l.i.MethodHandle.copyWith(MethodType, LambdaForm)
Reviewed-by: vlivanov, ?
Contributed-by: john.r.rose@oracle.com
rev 10281 : [mq]: 11.8050877.conv

*** 2018,2028 **** public static MethodHandle explicitCastArguments(MethodHandle target, MethodType newType) { if (!target.type().isCastableTo(newType)) { throw new WrongMethodTypeException("cannot explicitly cast "+target+" to "+newType); } ! return MethodHandleImpl.makePairwiseConvert(target, newType, 2); } /** * Produces a method handle which adapts the calling sequence of the * given method handle to a new type, by reordering the arguments. --- 2018,2028 ---- public static MethodHandle explicitCastArguments(MethodHandle target, MethodType newType) { if (!target.type().isCastableTo(newType)) { throw new WrongMethodTypeException("cannot explicitly cast "+target+" to "+newType); } ! return MethodHandleImpl.makePairwiseConvert(target, newType, false); } /** * Produces a method handle which adapts the calling sequence of the * given method handle to a new type, by reordering the arguments.
src/share/classes/java/lang/invoke/MethodHandles.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File