Add Whalesong specific versions of letrec and letrec-values to avoid the undefined value
This commit is contained in:
parent
60a70798a8
commit
daa767998a
|
@ -37,6 +37,27 @@
|
||||||
(provide current-print-mode)
|
(provide current-print-mode)
|
||||||
|
|
||||||
|
|
||||||
|
;; Custom letrec and letrec-values in order to avoid running
|
||||||
|
;; into the (in Racket) newly introduced undefined value.
|
||||||
|
|
||||||
|
(provide letrec letrec-values)
|
||||||
|
(define-syntax (letrec stx)
|
||||||
|
(syntax-case stx ()
|
||||||
|
[(_ ([id expr] ...) body ...)
|
||||||
|
(syntax/loc stx
|
||||||
|
(let ([id '**undefined**] ...)
|
||||||
|
(set! id expr) ...
|
||||||
|
(let () body ...)))]))
|
||||||
|
|
||||||
|
(define-syntax (letrec-values stx)
|
||||||
|
(syntax-case stx ()
|
||||||
|
[(_ ([(id ...) expr] ...) body ...)
|
||||||
|
(syntax/loc stx
|
||||||
|
(let ([id '**undefined**] ... ...)
|
||||||
|
(set!-values (id ...) expr) ...
|
||||||
|
(let () body ...)))]))
|
||||||
|
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; Primitive function stubs
|
;; Primitive function stubs
|
||||||
|
|
||||||
|
@ -264,26 +285,26 @@
|
||||||
current-continuation-marks
|
current-continuation-marks
|
||||||
continuation-mark-set->list
|
continuation-mark-set->list
|
||||||
|
|
||||||
;; continuation-mark-set?
|
;; continuation-mark-set?
|
||||||
;; continuation-mark-set->list
|
;; continuation-mark-set->list
|
||||||
|
|
||||||
;; struct-constructor-procedure?
|
;; struct-constructor-procedure?
|
||||||
;; struct-predicate-procedure?
|
;; struct-predicate-procedure?
|
||||||
;; struct-accessor-procedure?
|
;; struct-accessor-procedure?
|
||||||
;; struct-mutator-procedure?
|
;; struct-mutator-procedure?
|
||||||
|
|
||||||
;; make-arity-at-least
|
;; make-arity-at-least
|
||||||
;; arity-at-least?
|
;; arity-at-least?
|
||||||
;; arity-at-least-value
|
;; arity-at-least-value
|
||||||
|
|
||||||
|
|
||||||
;; compose
|
;; compose
|
||||||
;; current-inexact-milliseconds
|
;; current-inexact-milliseconds
|
||||||
;; current-seconds
|
;; current-seconds
|
||||||
void
|
void
|
||||||
random
|
random
|
||||||
;; sleep
|
;; sleep
|
||||||
;; (identity -identity)
|
;; (identity -identity)
|
||||||
|
|
||||||
raise
|
raise
|
||||||
error
|
error
|
||||||
|
@ -297,10 +318,10 @@
|
||||||
make-exn:fail:contract:variable
|
make-exn:fail:contract:variable
|
||||||
make-exn:fail:contract:divide-by-zero
|
make-exn:fail:contract:divide-by-zero
|
||||||
|
|
||||||
;; exn?
|
;; exn?
|
||||||
;; exn:fail:contract:arity?
|
;; exn:fail:contract:arity?
|
||||||
;; exn:fail:contract:variable?
|
;; exn:fail:contract:variable?
|
||||||
;; exn:fail:contract:divide-by-zero?
|
;; exn:fail:contract:divide-by-zero?
|
||||||
exn:fail?
|
exn:fail?
|
||||||
exn:fail:contract?
|
exn:fail:contract?
|
||||||
exn:fail:contract:arity?
|
exn:fail:contract:arity?
|
||||||
|
@ -353,32 +374,32 @@
|
||||||
procedure-arity-includes?
|
procedure-arity-includes?
|
||||||
procedure-rename
|
procedure-rename
|
||||||
;; (undefined? -undefined?)
|
;; (undefined? -undefined?)
|
||||||
;; immutable?
|
;; immutable?
|
||||||
void?
|
void?
|
||||||
symbol?
|
symbol?
|
||||||
string?
|
string?
|
||||||
char?
|
char?
|
||||||
boolean?
|
boolean?
|
||||||
vector?
|
vector?
|
||||||
struct?
|
struct?
|
||||||
;; bytes?
|
;; bytes?
|
||||||
byte?
|
byte?
|
||||||
number?
|
number?
|
||||||
complex?
|
complex?
|
||||||
real?
|
real?
|
||||||
rational?
|
rational?
|
||||||
integer?
|
integer?
|
||||||
exact-integer?
|
exact-integer?
|
||||||
exact?
|
exact?
|
||||||
exact-nonnegative-integer?
|
exact-nonnegative-integer?
|
||||||
inexact?
|
inexact?
|
||||||
odd?
|
odd?
|
||||||
even?
|
even?
|
||||||
zero?
|
zero?
|
||||||
positive?
|
positive?
|
||||||
negative?
|
negative?
|
||||||
box?
|
box?
|
||||||
;; hash?
|
;; hash?
|
||||||
|
|
||||||
equal?
|
equal?
|
||||||
eqv?
|
eqv?
|
||||||
|
@ -415,7 +436,7 @@ box?
|
||||||
length
|
length
|
||||||
list*
|
list*
|
||||||
list-ref
|
list-ref
|
||||||
;; list-tail
|
;; list-tail
|
||||||
append
|
append
|
||||||
reverse
|
reverse
|
||||||
for-each
|
for-each
|
||||||
|
@ -429,18 +450,18 @@ box?
|
||||||
assq
|
assq
|
||||||
assv
|
assv
|
||||||
assoc
|
assoc
|
||||||
;; sort
|
;; sort
|
||||||
box
|
box
|
||||||
;; box-immutable
|
;; box-immutable
|
||||||
unbox
|
unbox
|
||||||
set-box!
|
set-box!
|
||||||
;; make-hash
|
;; make-hash
|
||||||
;; make-hasheq
|
;; make-hasheq
|
||||||
;; hash-set!
|
;; hash-set!
|
||||||
;; hash-ref
|
;; hash-ref
|
||||||
;; hash-remove!
|
;; hash-remove!
|
||||||
;; hash-map
|
;; hash-map
|
||||||
;; hash-for-each
|
;; hash-for-each
|
||||||
make-string
|
make-string
|
||||||
string
|
string
|
||||||
string-length
|
string-length
|
||||||
|
@ -467,24 +488,24 @@ box?
|
||||||
format
|
format
|
||||||
printf
|
printf
|
||||||
fprintf
|
fprintf
|
||||||
;; string->immutable-string
|
;; string->immutable-string
|
||||||
string-set!
|
string-set!
|
||||||
;; string-fill!
|
;; string-fill!
|
||||||
;; make-bytes
|
;; make-bytes
|
||||||
;; bytes
|
;; bytes
|
||||||
;; bytes->immutable-bytes
|
;; bytes->immutable-bytes
|
||||||
;; bytes-length
|
;; bytes-length
|
||||||
;; bytes-ref
|
;; bytes-ref
|
||||||
;; bytes-set!
|
;; bytes-set!
|
||||||
;; subbytes
|
;; subbytes
|
||||||
;; bytes-copy
|
;; bytes-copy
|
||||||
;; bytes-fill!
|
;; bytes-fill!
|
||||||
;; bytes-append
|
;; bytes-append
|
||||||
;; bytes->list
|
;; bytes->list
|
||||||
;; list->bytes
|
;; list->bytes
|
||||||
;; bytes=?
|
;; bytes=?
|
||||||
;; bytes<?
|
;; bytes<?
|
||||||
;; bytes>?
|
;; bytes>?
|
||||||
make-vector
|
make-vector
|
||||||
vector
|
vector
|
||||||
vector-length
|
vector-length
|
||||||
|
|
Loading…
Reference in New Issue
Block a user