-
Notifications
You must be signed in to change notification settings - Fork 3
/
all.lisp
29 lines (28 loc) · 909 Bytes
/
all.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
;;;; package.lisp
(uiop:define-package :vernacular/all
(:nicknames :vernacular)
(:import-from :overlord)
(:use :overlord/target-protocol)
(:import-from :vernacular/module
:module-ref :module-ref* :module-ref-ns :module-exports :module-static-exports)
(:import-from :vernacular/simple-module
:simple-module)
(:import-from :vernacular/hash-table-module
:hash-table-module)
(:import-from :vernacular/file-package
:intern-file-package
:reset-file-package)
(:import-from :vernacular/specials
:*module* :*source*)
(:export
:module-ref :module-ref* :module-ref-ns :module-exports :module-static-exports
:simple-module :hash-table-module
:intern-file-package :reset-file-package
:*module* :*source*)
(:use-reexport
:vernacular/well-known
:vernacular/lang
:vernacular/import-set
:vernacular/importing
:vernacular/parsers
:vernacular/include))