-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.lisp
42 lines (40 loc) · 1.04 KB
/
package.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
(in-package :cl-user)
(defpackage fmcs
(:nicknames flavors-metaclass-system flavors)
(:use cl)
(:shadow #:defclass
#:defmethod
#:make-instance
#:slot-value
#:standard-object
#:standard-class
#:self
#:call-next-method)
(:export #:*redefine-warnings*
#:self
#:$slot
#:def$flavor
#:def$method
#:undef$method
#:def$frame
#:def$behavior
#:trace$method
#:untrace$method
#:is-traced$method
#:compile-$flavor-$methods
#:defwhopper
#:continue-whopper
#:$send
#:lexpr-$send
#:flavorp
#:flavor-instancep
#:flavor-typep
#:flavor-type-of
#:get-flavor-instance-slots
#:symbol-value-in-$instance
#:make-$instance
#:make-window-or-instance
#:mcs-trace
#:mcs-untrace
#:mcs-is-traced))
(in-package :fmcs)