forked from dylan-lang/deft
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleanup: reduce duplication in module definitions
...by using deft-shared to re-export everything in a way that can be used by the workspaces and pacman modules.
- Loading branch information
Showing
6 changed files
with
44 additions
and
99 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 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,4 +1,4 @@ | ||
Module: shared | ||
Module: deft-shared | ||
|
||
|
||
// Whether to do verbose output. This is set based on the --verbose command | ||
|
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,28 +1,17 @@ | ||
Module: dylan-user | ||
|
||
define library deft-test-suite | ||
use common-dylan; | ||
use deft; | ||
use io; | ||
use strings; | ||
use system; | ||
use testworks; | ||
|
||
use deft; | ||
end library; | ||
|
||
define module deft-test-suite | ||
use common-dylan; | ||
use file-system; | ||
use format; | ||
use locators; | ||
use operating-system; | ||
use testworks; | ||
|
||
use deft-shared; // where we get the dylan module from | ||
use pacman; | ||
use %pacman; | ||
use shared; | ||
use standard-io; | ||
use streams; | ||
use strings; | ||
use testworks; | ||
use threads; | ||
use workspaces; | ||
use %workspaces; | ||
end module; |
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