-
Notifications
You must be signed in to change notification settings - Fork 0
/
pkg.lisp
50 lines (45 loc) · 1.08 KB
/
pkg.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
;;;; Package for DSM
;;;
;;; This is enough for DSM, but only enough for it: very little is
;;; exposed from the parser & compiler which would need to be be if
;;; they were to be made more general: see comments in pll and cpll.
;;;
(in-package :cl-user)
#+org.tfeb.tools.require-module
(org.tfeb.tools.require-module:needs
((:org.tfeb.hax.collecting
:org.tfeb.hax.iterate
:org.tfeb.hax.simple-loops
:org.tfeb.hax.utilities
:org.tfeb.hax.spam)
:compile t))
(defpackage :org.tfeb.dsm/impl
(:use :cl)
(:use
:org.tfeb.hax.collecting
:org.tfeb.hax.iterate
:org.tfeb.hax.simple-loops
:org.tfeb.hax.utilities
:org.tfeb.hax.spam)
(:export
#:dsm-error
#:dsm-error/yours
#:dsm-error/mine
#:scold
#:catastrophe
#:parse-lambda-list
#:compile-parsed-lambda-list
#:compile-lambda-list))
(defpackage :org.tfeb.dsm
(:use :cl)
(:use
:org.tfeb.hax.collecting
:org.tfeb.hax.utilities
:org.tfeb.hax.simple-loops
:org.tfeb.hax.spam
:org.tfeb.dsm/impl)
(:export
#:dsm-error
#:dsm-error/yours
#:dsm-error/mine
#:destructuring-match))