typelead / eta

The Eta Programming Language, a dialect of Haskell on the JVM
https://eta-lang.org
BSD 3-Clause "New" or "Revised" License
2.6k stars 142 forks source link

Support Module System in Java 9+ #941

Open rahulmutt opened 5 years ago

rahulmutt commented 5 years ago

Java 9+ introduced the module system by specifying module-info.java or module-info.class.

Implementing this requires:

rahulmutt commented 5 years ago

The trickiest problem to resolve here is that the module system does not support cyclic dependencies while Eta supports source imports so we need to find a way to encode that somehow.