Re: What can we improve in JSR292 for Java 9?

2015-03-05 Thread Jochen Theodorou
Am 05.03.2015 11:09, schrieb Peter Levart: On 03/05/2015 04:09 AM, Jochen Theodorou wrote: [...] public class Foo { public Foo(String s, Integer i){} public Foo(Integer s, Object o){} } public class Bar extends Foo { public Bar(def a, def b) { super(a,b) // call with runtime types h

Re: What can we improve in JSR292 for Java 9?

2015-03-05 Thread Peter Levart
On 03/05/2015 04:09 AM, Jochen Theodorou wrote: Am 04.03.2015 23:50, schrieb Charles Oliver Nutter: On Thu, Feb 26, 2015 at 4:27 AM, Jochen Theodorou wrote: my biggest request: allow the call of a super constructor (like super(foo,bar)) using MethodHandles an have it understood by the JVM lik