JastAdd
This is our old website.
Broken links can occur.
A new website is under construction.

JavaDemoNames

Modular name analysis for Java using JastAdd

Name analysis for Java is challenging with its complex visibility rules involving nested scopes, inheritance, qualified access, and syntactic ambiguities. We show how Java name analysis including ambiguities related to names of variables, fields, and packages, can be implemented in a declarative and modular manner using the JastAdd compiler construction system.

Declarative attributes and context-dependent rewrites enable the implementation to be modularized in the same way as the informal Java language specification. The individual rules in the specification transfer directly to equations in the implementation. Rewrites are used to define new concepts in terms of existing concepts in an iterative manner in the same way as the informal language specification. This enables equations to use both context-free and context-dependent concepts and leads to improved separation of concerns. A full Java 1.4 compiler has been implemented to validate the technique.

A presentation of the technique and its implementation is available in:
Modular name analysis for Java using JastAdd, TorbjöEkman and Gö Hedin, Submitted for publication, Available at pdf
The source code for the implementation including the JastAdd tool is available here

A full Java compiler using the described techniques is available at JastAdd Extensible Java Compiler.