Language Extension


This challenge involves adding a new language feature to an exisiting language and to adapt supporting tools to that feature. Consider extending Java 1.4 with the enhanced for statement as introduced in Java 5. The statement contains a new local variable declaration, an expression that must be iterable, and a block to be executed each iteration.

More details

The challenge is to extend an entire tool chain to support the new language construct. This kind of extension will most often cross-cut the existing decomposition. If, for instance, the tools are implemented using a layered architecture then the new langauge feature will require changes to multiple layers. How can these changes be carried out in a modular fashion? Can we compose several such extensions? What kind of language mechanisms are needed in the framework to support this kind of extensions?

This challenge problem was written by TorbjornEkman.

 

Last edited May 12, 2007
Return to WelcomeVisitors