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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
(defun sys:stuff-key-params (keys args)
(with-gensyms (cell)
(collect-each ((k keys))
(tree-bind (sym : init sym-p) k
(let ((kw (intern (symbol-name sym) :keyword)))
^(let ((,cell (memp ,kw ,args)))
,(if init
^(cond
(,cell
(set ,sym (cadr ,cell))
,*(if sym-p ^((set ,sym-p t))))
(t
(set ,sym ,init)))
^(when ,cell
(set ,sym (cadr ,cell))
,*(if sym-p ^((set ,sym-p t)))))))))))
(define-param-expander :key (param body menv form)
(ignore menv)
(let* ((excluding-rest (butlastn 0 param))
(key-start (memq '-- excluding-rest))
(rest-param (or (nthlast 0 param) (gensym)))
(before-key (ldiff excluding-rest key-start))
(key-params-raw (butlastn 0 (cdr key-start)))
(key-params [mapcar [iffi atom (op list @1)] key-params-raw])
(eff-param (append before-key rest-param)))
(each ((key-spec key-params))
(tree-case key-spec
((t t var-p . junk)
(when (consp junk)
(compile-error form "superfluous forms in ~s" key-spec))
(when junk
(compile-error form "invalid dotted form ~s" key-spec))
(unless (bindable var-p)
(compile-error form "~s isn't a bindable symbol" var-p))
:)
((t t . more)
(unless (listp more)
(compile-error form "invalid dotted form ~s" key-spec))
:)
((sym . more)
(unless (listp more)
(compile-error form "invalid dotted form ~s" key-spec))
(unless (bindable sym)
(compile-error form "~s isn't a bindable symbol" sym)))))
(let* ((key-syms [mapcar first key-params])
(key-syms-p (remq nil [mapcar third key-params])))
(list eff-param
^(let (,*key-syms ,*key-syms-p)
,*(sys:stuff-key-params key-params rest-param)
,*body)))))
|