-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcore.ss
649 lines (610 loc) · 26.5 KB
/
core.ss
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
;;; Copyright 2020 Mitchell Kember. Subject to the MIT License.
#!r6rs
(library (src lang core)
(export SICP Chapter Section Exercise define =!> => ~> slow=> slow~> paste
run-sicp)
(import (except (rnrs (6)) current-output-port)
(rnrs mutable-pairs (6))
(src compat active))
;; Global flag for whether to use ANSI color in output.
(define *color* #f)
;; Returns `str` with ANSI escape codes to make it `color`, if `*color*` is
;; set. Otherwise, returns `str` unchanged.
(define (ansi color str)
(if *color*
(let ((code (case color
((bold) "1")
((bold-red) "1;31")
((red) "31")
((green) "32")
((yellow) "33")
((blue) "34")
((magenta) "35")
(else (error 'ansi "unknown color" color)))))
(string-append "\x1b;[" code "m" str "\x1b;[0m"))
str))
;; Global test counters, used for reporting and for setting the exit status.
;; When running without a filter, total = passes + fails + skips. Otherwise,
;; the difference is equal to the number of tests filtered out.
(define *total* 0)
(define *passes* 0)
(define *fails* 0)
(define *skips* 0)
;; Increases `*total*` by `n` tests. We need a separate function for this
;; because using `*total*` in macros would indirectly export it, meaning it
;; would have to be immutable.
(define (increase-total-tests! n)
(set! *total* (+ *total* n)))
;; Asserts that all elements in `vals` are the same, according to `equal?`.
;; Expects `exprs` to contain syntax objects for each value in `vals`.
(define (assert-equal vals exprs)
(assert-on-pairs
equal?
(lambda (v1 v2 e1 e2)
(format
(string-append
"left: " (ansi 'blue "~s") "\n=> " (ansi 'green "~s") "\n\n"
"right: " (ansi 'blue "~s") "\n=> " (ansi 'green "~s") "\n\n")
e1 v1 e2 v2))
vals
exprs))
;; Asserts that each number in `vals` is very close to the previous one.
;; Expects `exprs` to contain syntax objects for each value in `vals`.
(define (assert-close vals exprs)
(define (delta x y) (abs (- x y)))
(define max-delta 1e-10)
(assert-on-pairs
(lambda (v1 v2)
(<= (delta v1 v2) max-delta))
(lambda (v1 v2 e1 e2)
(format
(string-append
"left: " (ansi 'blue "~s") "\n=> " (ansi 'green "~s") "\n\n"
"right: " (ansi 'blue "~s") "\n=> " (ansi 'green "~s") "\n\n"
"delta: " (ansi 'green "~s") " > ~s\n\n")
e1 v1 e2 v2 (delta v1 v2) max-delta))
vals
exprs))
;; Asserts that `pred?` holds for each pair of adjacent elements in `vals`.
;; Expects `exprs` to contain syntax objects for each value in `vals`. If
;; `(pred? v1 v2)` is false, the error message includes the `v1` line number
;; and the string `(make-msg v1 v2 d1 d2)`, where `d1` and `d2` are the
;; corresponding unevaluated forms as data (not syntax objects). Also
;; increments `*passes*` or `*fails*` based on the result.
(define (assert-on-pairs pred? make-msg vals exprs)
(for-each
(lambda (vpair epair)
(let ((v1 (car vpair))
(v2 (cdr vpair))
(e1 (car epair))
(e2 (cdr epair)))
(cond
((pred? v1 v2) (set! *passes* (+ *passes* 1)))
(else
(set! *fails* (+ *fails* 1))
(display-failure
e1
(make-msg v1 v2 (syntax->datum e1) (syntax->datum e2)))))))
(pairs vals)
(pairs (syntax->list exprs))))
;; Asserts that executing `thunk` raises an error, and that the error message
;; formatted as "<who>: <message>: <irritants>" contains `substr` as a
;; substring. Expects `expr` to contain the syntax object for `thunk`.
(define (assert-raises thunk expr substr)
(define (pass)
(set! *passes* (+ *passes* 1)))
(define (fail ok result)
(set! *fails* (+ *fails* 1))
(display-failure
expr
(format
(string-append
"left: " (ansi 'blue "~s") "\n" (if ok "=>" "=!>") " "
(ansi (if ok 'green 'red) (if ok "~s" "~a")) "\n\n"
"right:\n=!> ... " (ansi 'red substr) " ...\n\n")
(syntax->datum expr) result)))
(call/cc
(lambda (return)
(let ((result
(with-exception-handler
(lambda (con)
(let* ((irrs (condition-irritants con))
(colon (if (null? irrs) "" ":"))
(rest (map (lambda (x) " ~s") irrs))
(fmt (apply string-append "~a: ~a" colon rest))
(who (condition-who con))
(msg (condition-message con))
(str (apply format fmt who msg irrs)))
(if (string-contains? str substr)
(pass)
(fail #f str)))
(return))
thunk)))
(fail #t result)))))
;; Displays an assertion failure message, including the source location of
;; syntax object `expr` and the message `msg`.
(define (display-failure expr msg)
(let-values (((file line col) (syntax->location expr)))
(display
(format
(string-append
(ansi 'bold "~a:~a:~a: assertion failed")
"\n~a")
file line col msg))))
;; Converts a syntax object to a list of syntax objects.
;; https://www.scheme.com/csug8/syntax.html#./syntax:s6
(define syntax->list
(lambda (ls)
(syntax-case ls ()
(() '())
((x . r) (cons #'x (syntax->list #'r))))))
;; Returns a list of the adjacent pairs of elements in `xs` For example, given
;; the list `(a b c d)` it returns `((a . b) (b . c) (c . d))`.
(define (pairs xs)
(cond
((null? xs) '())
((null? (cdr xs)) '())
(else (cons (cons (car xs) (cadr xs))
(pairs (cdr xs))))))
;; Global flag indicating whether to run slow tests.
(define *slow* #f)
;; Returns whether to run slow tests. We need a separate function for this
;; because using `*slow*` in macros would indirectly export it, meaning it
;; would have to be immutable.
(define (slow-enabled?) *slow*)
;; Increments the `*skips*` counter for a skipped slow test.
(define (skip-slow-test)
(set! *skips* (+ *skips* 1)))
;; Wraps code so that it only executes when `*slow*` is true, and otherwise
;; increments the `*skips*` counter.
(define-syntax when-slow
(syntax-rules ()
((_ e) (if (slow-enabled?) e (skip-slow-test)))))
;; Like hashtable-ref, but fails if the key is not present.
(define (hashtable-ref-must table key)
(let ((val (hashtable-ref table key #f)))
(if (and (eq? val #f) (not (hashtable-contains? table key)))
(error 'hashtable-ref-must "key not found" key)
val)))
;; An entry stores code from a part of the textbook. It consists of a unique
;; symbol `id`, a kind ('Chapter, 'Section, or 'Exercise), a string `num`
;; containing a dotted chapter/section/etc. number like "1.2.3", a title
;; string (or #f), a list of imported names from other entries formatted as
;; `((id name ...) ...)`, a list of exported names, and a thunk that takes all
;; the imported names as one flat list of arguments and returns the exported
;; values in the same order as `exports`.
(define-record-type entry
(fields id kind num title imports exports thunk))
;; A queue supports constant time appending to the back, popping from the
;; front, and accessing the length. (It also supports pushing to the front,
;; making it more of a deque, but I didn't feel like renaming everything).
(define-record-type (queue make-raw-queue queue?)
(fields (mutable length) (mutable front) (mutable back)))
(define (make-queue)
(make-raw-queue 0 '() '()))
(define (queue-empty? q)
(null? (queue-front q)))
(define (queue-push-back! q x)
(let ((new-pair (cons x '())))
(queue-length-set! q (+ (queue-length q) 1))
(cond
((queue-empty? q)
(queue-front-set! q new-pair)
(queue-back-set! q new-pair))
(else
(set-cdr! (queue-back q) new-pair)
(queue-back-set! q new-pair)))))
(define (queue-pop-front! q)
(if (queue-empty? q)
(error 'queue-pop-front! "empty queue")
(let ((result (car (queue-front q))))
(cond
((eq? (queue-front q) (queue-back q))
(queue-front-set! q '())
(queue-back-set! q '()))
(else
(queue-front-set! q (cdr (queue-front q)))))
result)))
(define (queue-push-front! q x)
(if (queue-empty? q)
(queue-push-back! q x)
(queue-front-set! q (cons x (queue-front q)))))
;; Global queue of entries. The `SICP` macro produces calls to `add-entry!`.
(define *entries* (make-queue))
(define (add-entry! id kind num title imports exports thunk)
(queue-push-back! *entries*
(make-entry id kind num title imports exports thunk)))
;; Converts a queue of entries to a hashtable from `id` to entries. Raises an
;; error if there are two entries with the same `id`.
(define (entries-by-id)
(define by-id (make-eq-hashtable (queue-length *entries*)))
(for-each
(lambda (entry)
(when (hashtable-contains? by-id (entry-id entry))
(error 'entries-by-id "duplicate entry id" (entry-id entry)))
(hashtable-set! by-id (entry-id entry) entry))
(queue-front *entries*))
by-id)
;; Returns a hashtable from entries in `*entries*` to their in-degrees (the
;; number of times they are imported). Includes only entries that satisfy
;; `pred?` and all their transitive dependencies. Edges from excluded entries
;; do not count towards in-degree counts for the included entres. Requires
;; `by-id`, a hashtable produced by `entries-by-id`.
(define (entries-to-in-degrees by-id pred?)
(define in-degrees (make-eq-hashtable))
(define q (make-queue))
(for-each
(lambda (entry)
(when (pred? entry)
(queue-push-back! q entry)))
(queue-front *entries*))
;; Explore entries reachable from those satisfying `pred?` using BFS.
(let loop ()
(unless (queue-empty? q)
(let* ((e (queue-pop-front! q))
(deps (map (lambda (import-list)
(unless (hashtable-contains? by-id
(car import-list))
(error 'entries-to-in-degrees
(format "~a imports from nonexistent ~a"
(entry-id e)
(car import-list))))
(hashtable-ref-must by-id (car import-list)))
(entry-imports e))))
(hashtable-set! in-degrees e 0)
(for-each
(lambda (d)
(unless (hashtable-contains? in-degrees d)
(queue-push-back! q d)))
deps)
(loop))))
;; Iterate over the entries and calculate in-degrees.
(vector-for-each
(lambda (e)
(for-each
(lambda (import-list)
(let ((d (hashtable-ref-must by-id (car import-list))))
(when (hashtable-contains? in-degrees d)
(hashtable-update! in-degrees d (lambda (x) (+ x 1)) #f))))
(entry-imports e)))
(hashtable-keys in-degrees))
in-degrees)
;; Topologically sorts entries from `*entries*`, including only those that
;; satisfy `pred?` and all their transitive dependencies. Requires `by-id`, a
;; hashtable produced by `entries-by-id`. Raises an error if sorting fails
;; because of an import cycle.
(define (sort-entries by-id pred?)
(define in-degrees (entries-to-in-degrees by-id pred?))
(define sources (make-queue))
(define sorted '())
; DEBUG: PRINT IN DEGREES
; (let-values (((keys vals) (hashtable-entries in-degrees)))
; (write (vector-map entry-id keys)) (newline)
; (write vals)(newline)
; (write 'done)(newline))
(for-each
(lambda (entry)
(when (zero? (hashtable-ref in-degrees entry -1))
(queue-push-back! sources entry)))
;; Go through all of `*entries*` in reverse, rather than just the entries
;; filtered by `pred?`, so that in the absence of forward dependencies
;; entries will be executed in source order.
(reverse (queue-front *entries*)))
; DEBUG: PRINT INITIAL SOURCE QUEUE
; (display (format "source queue: ~s\n" (map entry-id (queue-front sources))))
(let loop ()
(unless (queue-empty? sources)
(let ((node (queue-pop-front! sources)))
(set! sorted (cons node sorted))
(for-each
(lambda (import-list)
(let* ((e (hashtable-ref-must by-id (car import-list)))
(deg (hashtable-ref-must in-degrees e))
(new-deg (- deg 1)))
(hashtable-set! in-degrees e new-deg)
(when (zero? new-deg)
;; Push to front so that we add entries as soon as they turn
;; into sources. The result is that dependencies are moved
;; to occur just before they are used, and no earlier.
(queue-push-front! sources e))))
(entry-imports node))
(loop))))
(let-values (((entries degrees) (hashtable-entries in-degrees)))
(vector-for-each
(lambda (e deg)
(unless (zero? deg)
; DEBUG: PRINT IN-DEGREES POST-SORT
; (write (vector-map entry-id entries)) (newline)
; (write degrees) (newline)
(error 'sort-entries "import cycle in entries" (entry-id e))))
entries
degrees))
sorted)
;; Executes the code in `*entries*`. If `slow` is true, runs slow tests. If
;; `verbose` is true, prints more verbose information about all tests. If
;; `color` is true, prints color output. If `filters` is nonempty, only runs
;; entries whose `id` matches at least one of the items in `filters` (and all
;; their transitive depedencies). Returns #t if all tests passed.
(define (run-sicp filters slow verbose color)
(define (include-entry? entry)
(define (match? s)
(let ((s-len (string-length s)))
(and (> s-len 0)
(let* ((sigil (memv (string-ref s 0) '(#\: #\?)))
(e (if sigil
(symbol->string (entry-id entry))
(entry-num entry))))
(or (string=? s e)
(and sigil (= s-len 1) (string=? s (substring e 0 1)))
(and (< s-len (string-length e))
(string=? s (substring e 0 s-len))
(char=? #\. (string-ref e s-len))))))))
(or (null? filters)
(exists match? filters)))
(define by-id (entries-by-id))
(define sorted (sort-entries by-id include-entry?))
(define results (make-eq-hashtable))
(define (gather-args importer)
(define (gather import-list)
(let* ((exporter (hashtable-ref-must by-id (car import-list)))
(import-names (cdr import-list))
(export-names (entry-exports exporter))
(export-values (hashtable-ref-must results exporter)))
(define (find-value name)
(let loop ((en export-names)
(ev export-values))
(cond
((or (null? en) (null? ev))
(error 'run-sicp
(format "~a imports nonexistent `~a` from ~a"
(entry-id importer)
name
(entry-id exporter))))
((eq? name (car en)) (car ev))
(else (loop (cdr en) (cdr ev))))))
(map find-value import-names)))
(fold-left append '() (map gather (entry-imports importer))))
(when slow (set! *slow* #t))
(when color (set! *color* #t))
(for-each
(lambda (e)
(when verbose
(display
(ansi 'yellow
(format "* ~a ~a~a\n"
(symbol->string (entry-kind e))
(entry-num e)
(if (entry-title e)
(string-append ": " (entry-title e))
"")))))
; (display (format "ARGS FOR ~s: ~s\n" (entry-id e) (gather-args e)))
(hashtable-set!
results
e
(apply (entry-thunk e) (gather-args e)))
; (let-values (((keys vals) (hashtable-entries results)))
; (display "RESULTS: ") (write (vector-map entry-id keys)) (write vals) (newline))
)
sorted)
(when verbose (newline))
(display
(format
"test result: ~a. ~a passed; ~a failed; ~a skipped; ~a filtered out\n"
(if (zero? *fails*) (ansi 'green "ok") (ansi 'bold-red "FAIL"))
*passes* *fails* *skips* (- *total* *passes* *fails* *skips*)))
(when (and (zero? *passes*) (zero? *fails*))
(display (ansi 'magenta "WARNING: did not run any tests\n")))
(zero? *fails*)
;; PRINT INFO
; (write filters) (newline)
; (write slow) (newline)
; (write verbose) (newline)
; (write *entries*) (newline)
; (write (map entry-id sorted))
)
;; In order for `SICP` to match on auxiliary keywords, we must export them.
;; That implies giving them definitions. We don't need to do this for `define`
;; and `=>` because we instead re-export the rnrs definitions (the latter is
;; already an auxiliary keyword used in `cond`).
(let-syntax
((auxiliary
(syntax-rules ()
((_ lit ...)
(begin
(define-syntax lit
(lambda (x)
(syntax-violation #f "incorrect usage of auxiliary keyword" x)))
...)))))
(auxiliary Chapter Section Exercise =!> ~> slow=> slow~> paste))
;; A DSL for SICP code samples and exercises.
(define-syntax SICP (lambda (x)
;; Use the `SICP` syntax form in `datum->syntax` calls.
(define sicp (with-syntax (((s e* ...) x)) #'s))
;; Creates an entry `num` from its `id` syntax. This just chops off the
;; sigil used to differentiate chapters/sections from exercises (and also
;; used because `1.1.1` on its own is an invalid R6RS identifier).
(define (entry-id->num id)
(let ((str (symbol->string (syntax->datum id))))
(substring str 1 (string-length str))))
;; Table of definitions used to implement `paste`.
(define definitions (make-eq-hashtable))
;; Construct a combined identifier from an entry id and a name. This is used
;; as a key in `definitions`.
(define (paste-id id name)
(define (str s) (symbol->string (syntax->datum s)))
(string->symbol (string-append (str id) "--" (str name))))
;; Given a spec like `((:1.2 foo) (?3.4 bar baz))`, retrieve the code for
;; `foo`, `bar`, and `baz`. The returned syntax should be spliced, since
;; otherwise it would be invoking void as a procedure.
(define (retrieve-paste-code spec)
(define (inner id names)
(syntax-case names ()
(() #'())
((name e* ...)
(let ((pid (paste-id id #'name)))
(unless (hashtable-contains? definitions pid)
(syntax-violation
#f
"paste of non-existent definition"
#'name))
#`(#,(hashtable-ref definitions pid #f)
#,@(inner id #'(e* ...)))))))
(syntax-case spec ()
(() #'())
(((id name* ...) e* ...)
#`(#,@(inner #'id #'(name* ...))
#,@(retrieve-paste-code #'(e* ...))))))
;; Recursive implementation of the macro. It takes:
;; x - the remaining forms to be processed
;; header - the last seen chapter/section/exercise header
;; exports - names of definitions made since the last header
;; body - code encountered since the last header
;; ntests - number of tests/asserted processed so far
;; out - accumulated result of the macro
(define (go x header exports body ntests out)
(define (flush)
(if (eq? header 'no-header)
out
#`(#,@out #,(build-entry))))
(define (build-entry)
(with-syntax (((kind id _ ...) header)
(((import-id import-name ...) ...) (get-uses))
((export-name ...) exports))
;; Make sure no imports are shadowed by definitions.
(let ((all-import-names
(syntax->datum #'(import-name ... ...))))
(for-each
(lambda (name)
(when (memq name all-import-names)
(syntax-violation
#f
(string-append
"imported name '"
(symbol->string name)
"' is shadowed by a local definition")
header)))
(syntax->datum exports)))
;; DEBUG: PRINT THUNK
; (write (syntax->datum #`(lambda (import-name ... ...)
; (define export-name) ...
; #,@body
; (list export-name ...))))
; (newline)(newline)
#`(add-entry!
'id
'kind
#,(entry-id->num #'id)
#,(get-title)
'((import-id import-name ...) ...)
'#,exports
(lambda (import-name ... ...)
(define export-name) ...
#,@body
(list export-name ...)))))
(define (get-title)
(syntax-case header ()
((_ _ title _ ...) (string? (syntax->datum #'title)) #'title)
(_ #'#f)))
(define (get-uses)
(syntax-case header (use)
((_ _ (use e* ...)) #'(e* ...))
((_ _ _ (use e* ...)) #'(e* ...))
(_ '())))
(define (add-export name code)
(with-syntax (((_ id e* ...) header))
(let ((pid (paste-id #'id name)))
(cond
((memq (syntax->datum name) (syntax->datum exports))
;; This is a redefinition of the same export. Remove it from the
;; definition table to disallow pasting the code, since it would
;; be ambiguous which definition it is meant to paste.
(hashtable-delete! definitions pid)
exports)
(else
(when code (hashtable-set! definitions pid code))
#`(#,@exports #,name))))))
(define (add-exports-from-paste names)
(define (add names result)
(syntax-case names ()
(() result)
((n n* ...)
(memq (syntax->datum #'n) (syntax->datum exports))
(add #'(n* ...) result))
((n n* ...)
(add #'(n* ...) #`(#,@result n)))))
;; This intentionally doesn't add to the definitions table. Pastes
;; should come from the original source -- it would be too confusing
;; if a paste's code comes from another paste.
(add names exports))
(syntax-case x (Chapter Section Exercise define
=!> => ~> slow=> slow~> paste)
(() #`(#,@(flush) (increase-total-tests! #,ntests)))
(((Chapter e1* ...) e2* ...)
(go #'(e2* ...) (car x) #'() #'() ntests (flush)))
(((Section e1* ...) e2* ...)
(go #'(e2* ...) (car x) #'() #'() ntests (flush)))
(((Exercise e1* ...) e2* ...)
(go #'(e2* ...) (car x) #'() #'() ntests (flush)))
((e1 =!> e2 e* ...)
(with-syntax ((assert #'(assert-raises (lambda () e1) #'e1 e2)))
(go #'(e* ...) header exports #`(#,@body assert) (+ ntests 1) out)))
((e1 => e2 e* ...)
(go=> #f #'(e* ...) #'(e1 e2) header exports body (+ ntests 1) out))
((e1 ~> e2 e* ...)
(go~> #f #'(e* ...) #'(e1 e2) header exports body (+ ntests 1) out))
((e1 slow=> e2 e* ...)
(go=> #t #'(e* ...) #'(e1 e2) header exports body (+ ntests 1) out))
((e1 slow~> e2 e* ...)
(go~> #t #'(e* ...) #'(e1 e2) header exports body (+ ntests 1) out))
(((paste (id name ...) ...) e* ...)
(with-syntax (((code ...) (retrieve-paste-code #'((id name ...) ...))))
(go #'(e* ...)
header (add-exports-from-paste #'(name ... ...))
#`(#,@body code ...) ntests out)))
(((define name) e* ...)
(identifier? #'name)
(go #'(e* ...) header (add-export #'name #f) body ntests out))
(((define name e1* ...) e2* ...)
(identifier? #'name)
(with-syntax ((set #'(set! name e1* ...)))
(go #'(e2* ...)
header (add-export #'name #'set) #`(#,@body set) ntests out)))
(((define (name . args) e1* ...) e2* ...)
(identifier? #'name)
(with-syntax ((set #'(set! name (lambda args e1* ...))))
(go #'(e2* ...)
header (add-export #'name #'set) #`(#,@body set) ntests out)))
((e e* ...)
(go #'(e* ...) header exports #`(#,@body e) ntests out))))
;; Helper recursive function when parsing `=>` operators.
(define (go=> slow x terms header exports body ntests out)
(syntax-case x (=>)
((=> e e* ...)
(go=> slow #'(e* ...)
#`(#,@terms e) header exports body (+ ntests 1) out))
((e* ...)
(let ((new-body (add-assertion slow #'assert-equal terms body)))
(go #'(e* ...) header exports new-body ntests out)))))
;; Helper recursive function when parsing `~>` operators.
(define (go~> slow x terms header exports body ntests out)
(syntax-case x (~>)
((~> e e* ...)
(go~> slow #'(e e* ...)
#`(#,@terms e) header exports body (+ ntests 1) out))
((e* ...)
(let ((new-body (add-assertion slow #'assert-close terms body)))
(go #'(e* ...) header exports new-body ntests out)))))
;; Helper used by `go=>` and `go~>` to add an assertion to `body`.
(define (add-assertion slow assert terms body)
(let* ((code #`(#,assert (list #,@terms) #'#,terms))
(wrapped (if slow #`(when-slow #,code) code)))
#`(#,@body #,wrapped)))
(with-syntax (((_ e* ...) x))
;; DEBUG: PRINT INPUT
; #`(write '(e* ...))
;; DEBUG: PRINT MACRO OUTPUT
; #`(write '(begin #,@(go #'(e* ...) 'no-header #'() #'() #'())))
;; DEBUG: PRINT *entries*
; #`(begin #,@(go #'(e* ...) 'no-header #'() #'() #'()) (write *entries*))
#`(begin #,@(go #'(e* ...) 'no-header #'() #'() 0 #'()))
))))