File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2727 [(list op args ... extra)
2828 #:when (string-contains? (~a op) "sound " )
2929 (define op* (string->symbol (substring (symbol->string (car expr)) (string-length "sound- " ))))
30- (cons op* (map drop-unsound args))]
31- [(list op args ... ) (cons op (map drop-unsound args))]
30+ (cons op* (map drop-sound args))]
31+ [(list op args ... ) (cons op (map drop-sound args))]
3232 [_ expr]))
3333
3434(define (check-rule test-rule)
3838 (match-define (list pts exs1 exs2)
3939 (parameterize ([*num-points* (num-test-points)]
4040 [*max-find-range-depth* 0 ])
41- (sample-points '(TRUE) (list p1 (drop-unsound p2)) (list ctx ctx))))
41+ (sample-points '(TRUE) (list p1 (drop-sound p2)) (list ctx ctx))))
4242
4343 (for ([pt (in-list pts)]
4444 [v1 (in-list exs1)]
You can’t perform that action at this time.
0 commit comments