Skip to content

Commit

Permalink
Document the new module, related to #148
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Apr 20, 2020
1 parent ef15663 commit 9b7759e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ Arend is split into several subprojects:
|`api`|open API for writing Arend extensions.|
|`base`|the Arend typechecker.<br/>It depends on `api`, `proto`.|
|`cli`|the CLI frontend of Arend with the ANTLR parser.<br/>It depends on `base`, `parser`, `api`, `proto`.|
|`tester`|Helper for writing unit tests with JUnit4.<br/>It depends on `base`, `parser`, `api`, `cli`.|

The purpose of `parser` is to avoid introducing the dependency of the ANTLR
generator to other subprojects which only requires
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ dependencies {
implementation "com.github.JetBrains.Arend:proto:$arendVersion"
// The main compiler
implementation "com.github.JetBrains.Arend:base:$arendVersion"
// The unit test helpers
testImplementation "com.github.JetBrains.Arend:tester:$arendVersion"
}
```

Expand All @@ -58,5 +60,6 @@ dependencies {
implementation("com.github.JetBrains.Arend:parser:$arendVersion")
implementation("com.github.JetBrains.Arend:proto:$arendVersion")
implementation("com.github.JetBrains.Arend:base:$arendVersion")
testImplementation("com.github.JetBrains.Arend:tester:$arendVersion")
}
```

0 comments on commit 9b7759e

Please sign in to comment.