-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge: Rewrite Aya using locally nameless and HOAS+JIT compilation (#…
- Loading branch information
Showing
988 changed files
with
17,945 additions
and
27,315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,22 @@ | ||
module aya.base { | ||
requires transitive aya.md; | ||
requires transitive aya.pretty; | ||
requires transitive aya.util; | ||
requires transitive aya.util.more; | ||
requires transitive aya.guest.cubical; | ||
requires transitive kala.base; | ||
requires transitive kala.collection; | ||
requires transitive aya.syntax; | ||
|
||
requires static org.jetbrains.annotations; | ||
|
||
requires aya.ij.parsing.core; | ||
requires org.commonmark; | ||
// requires manifold.delegation.rt; | ||
|
||
exports org.aya.concrete.desugar; | ||
exports org.aya.concrete.error; | ||
exports org.aya.concrete.remark; | ||
exports org.aya.concrete.stmt.decl; | ||
|
||
exports org.aya.concrete.stmt; | ||
exports org.aya.concrete.visitor; | ||
exports org.aya.concrete; | ||
exports org.aya.core.def; | ||
exports org.aya.core.meta; | ||
exports org.aya.core.ops; | ||
exports org.aya.core.pat; | ||
exports org.aya.core.repr; | ||
exports org.aya.core.serde; | ||
exports org.aya.core.term; | ||
exports org.aya.core.visitor; | ||
exports org.aya.core; | ||
exports org.aya.prettier; | ||
exports org.aya.generic.util; | ||
exports org.aya.generic; | ||
exports org.aya.tyck.tycker; | ||
exports org.aya.normalize; | ||
exports org.aya.prelude; | ||
exports org.aya.ref; | ||
exports org.aya.primitive; | ||
exports org.aya.resolve.context; | ||
exports org.aya.resolve.error; | ||
exports org.aya.resolve.module; | ||
exports org.aya.resolve.salt; | ||
exports org.aya.resolve.visitor; | ||
exports org.aya.resolve; | ||
exports org.aya.tyck.env; | ||
exports org.aya.tyck.ctx; | ||
exports org.aya.tyck.error; | ||
exports org.aya.tyck.order; | ||
exports org.aya.tyck.pat; | ||
exports org.aya.tyck.trace; | ||
exports org.aya.tyck.unify; | ||
exports org.aya.tyck.tycker; | ||
exports org.aya.tyck; | ||
exports org.aya.unify; | ||
exports org.aya.resolve.error; | ||
} |
Oops, something went wrong.