Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How should I approach adding a feature to the Java language? [closed]

I've seen a few neat features in other languages around Java like generators and the recent "await" feature, and I tried to implement some of them using bytecode manipulation. However, I think these are neat enough for most developers to make them a language feature. I've seen the kijaro project; however, there seems to be very little documentation on how to get on there. So, even if only for my own use and curiousity, how should I approach doing so?

Thanks!

like image 838
Aviad Ben Dov Avatar asked Feb 24 '26 13:02

Aviad Ben Dov


1 Answers

Take a look at the article entitled "So you want to change the Java Programming Language..." on Oracle's blog.

like image 56
Mike Deck Avatar answered Feb 26 '26 03:02

Mike Deck