diff options
| author | 2024-08-19 01:15:51 +0800 | |
|---|---|---|
| committer | 2024-08-19 01:15:51 +0800 | |
| commit | ce423971e6ea3b4126806eea4b6874daee9f07b2 (patch) | |
| tree | e412ed023e405f7bb7ddc915f14ffa07469aceec /checker/src/main/java/module-info.java | |
| parent | Changed the grammar to allow bare top-level expressions only in REPL. (diff) | |
| download | orang-ce423971e6ea3b4126806eea4b6874daee9f07b2.tar.gz orang-ce423971e6ea3b4126806eea4b6874daee9f07b2.tar.xz orang-ce423971e6ea3b4126806eea4b6874daee9f07b2.zip | |
Added a checker module.
NOTE: I think I should look at guava or commons for some sort of sealable Map instead of the current Scope :D
Diffstat (limited to 'checker/src/main/java/module-info.java')
| -rw-r--r-- | checker/src/main/java/module-info.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/checker/src/main/java/module-info.java b/checker/src/main/java/module-info.java new file mode 100644 index 0000000..6e5fa47 --- /dev/null +++ b/checker/src/main/java/module-info.java | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | module lv.enes.orang.checker { | ||
| 2 | exports lv.enes.orang.checker; | ||
| 3 | |||
| 4 | requires lv.enes.orang.ast; | ||
| 5 | requires lv.enes.orang.core; | ||
| 6 | requires lv.enes.orang.utils; | ||
| 7 | |||
| 8 | requires static lombok; | ||
| 9 | } \ No newline at end of file | ||