Is there a language that gets compiled to Java code (not Byte code but Java .. so no Groovy, Scala, Jython, JRuby etc.)?

In other words is there a CoffeeScript for Java?

One of the major flaws I have against Java is that its so damn verbose and that it doesn't have multiple inheritance. It seems reasonably that one could just clean up the syntax add mixins/traits and closures through code generation.

Yeah its not elegant but coffeescript does it.

link|improve this question

66% accept rate
thanks god java does not have multiple inheritance – mcabral Nov 23 '11 at 17:04
@mcabral I mean mixins or traits. Oh and I love repeating myself hundreds of times. Seriously I have to use AspectJ to keep Java OOP DRY or else I just have to paste code all over the place. – Adam Gent Nov 23 '11 at 17:10
@mcabral: Multiple inheritance in itself is not a misfeature. The way C++ implements it has given it a bad name. Scala, for instance, implements multiple inheritance properly, and doesn't have the dreaded diamond problem. – missingfaktor Nov 23 '11 at 19:01
feedback

2 Answers

up vote 11 down vote accepted

Yep, Xtend. It's a new language brought to you by the Eclipse folks: http://www.eclipse.org/Xtext/xtend/

No multiple inheritance (that would be a fundamental change to Java semantics), but lots of syntactic sugar, just like CoffeeScript.

Also take a look at Mirah: http://www.mirah.org/

link|improve this answer
Wow, that's cool! +1 – thejh Nov 23 '11 at 17:09
That is cool. I still think you should be able to do multiple inheritance similar to how I have to do it right now in AspectJ (stackoverflow.com/q/7403617/318174). It seems it should be easy to code generate MI. – Adam Gent Nov 23 '11 at 17:13
Well, AspectJ doesn't compile to Java, strictly speaking. You can't really do AOP with pure Java code (efficiently). – Trevor Burnham Nov 23 '11 at 17:27
Well maybe not all of AspectJ but the general wrapping of methods (before,after) and injecting additional methods through ITDs could easily be accomplished with code generation. – Adam Gent Nov 23 '11 at 17:36
@TrevorBurnham Ah it looks like Xtend will do something close to what I want: eclipse.org/Xtext/xtend/#extensionmethods – Adam Gent Nov 23 '11 at 17:41
show 3 more comments
feedback

If you think about it, CoffeeScript compiling to Javascript means you can use coffeescript itself as a Java language. With the latest CoffeeScript (1.1.3) you might need to use Rhino directly because it triggers a JS implementation bug in the current jdk, but outside of that, you should be good to use the compiled js files to interact with Java code. :)

link|improve this answer
+1 An excellent point. However I like static typing slightly better than dynamic typing. – Adam Gent Nov 28 '11 at 1:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.