JSR 292 support in javac
The essential features are four:
- The type
java.dyn.Dynamicwill accept any method call and turn it into aninvokedynamicinstruction, and the full range of such instructions can be spelled from Java code. - The type
java.dyn.MethodHandlewill accept any argument and return types for a call to the method namedinvoke, which means that Java code can spell the full range of method handle invocations. - The full range of bytecode names acceptable to the JVM can be spelled from Java code, using an exotic identifier quoting syntax.
- The type
java.dyn.Dynamicserves as a bare reference type: Anything implicitly converts to it, and it can be cast to anything, but it is not a subtype ofjava.lang.Object. Its methods, of course, are those from point #1, so it is handy for forming invokedynamic calls.
The rationale is pretty simple: If we put some minimal support into Java for defining and using names in other languages, then Java can be used as a system programming language for implementing them. Otherwise, the system programming language will be assembled bytecode. (I like to visit ASM, but don't want to live there.) If that piques your interest (and if you read my blog, I suppose it might) do check out the wiki page.
Since I use NetBeans, I've also adapted the NetBeans Java frontend (so it won't keep putting red squigglies under code I know is correct). For those adventurous souls who are already willing and able to hack their NetBeans (and take all the pertinent risks!), here is a JAR to replace the corresponding one in the bowels of NetBeans 6.5. Obviously, be sure to place it only in a scratch copy of NetBeans that you can afford to burn. If you don't know what I'm talking about, you are lucky, and please don't hack your NetBeans!



Hi John,
This would be a nice addition indeed.
Best,
Ismael
Posted by Ismael Juma on March 31, 2009 at 06:34 AM PDT #
Have you already submitted your proposal to Project COIN? If so what was the reaction and how you estinate chances it will be included into java 7?
From my point of view it adds a lot of power to java. But I am fraid that it can be excluded from java 7.
Thanks
Posted by Serhiy on March 31, 2009 at 07:55 AM PDT #
Serhiy: Yes, I submitted the proposal just before the deadline, after brooding over it for a long time. The reactions will take a while to develop. You can monitor the coin-dev mailing list to see them as they appear. The links are all in the blog post above.
Ismael: Thank you.
Posted by John Rose on March 31, 2009 at 01:20 PM PDT #