Split out all code into modules.

This commit is contained in:
2023-09-04 01:56:24 -07:00
parent d46ea1e307
commit 128f40bcf4
53 changed files with 119 additions and 81 deletions

9
parser/build.gradle.kts Normal file
View File

@ -0,0 +1,9 @@
plugins {
pork_module
}
dependencies {
api(project(":ast"))
implementation(project(":common"))
}