Make the undefined value unique.
This commit is contained in:
parent
daa767998a
commit
a896cf4abd
|
@ -40,12 +40,13 @@
|
||||||
;; Custom letrec and letrec-values in order to avoid running
|
;; Custom letrec and letrec-values in order to avoid running
|
||||||
;; into the (in Racket) newly introduced undefined value.
|
;; into the (in Racket) newly introduced undefined value.
|
||||||
|
|
||||||
(provide letrec letrec-values)
|
(provide letrec letrec-values)
|
||||||
|
(define unique-undefined-value (list '<undefined>))
|
||||||
(define-syntax (letrec stx)
|
(define-syntax (letrec stx)
|
||||||
(syntax-case stx ()
|
(syntax-case stx ()
|
||||||
[(_ ([id expr] ...) body ...)
|
[(_ ([id expr] ...) body ...)
|
||||||
(syntax/loc stx
|
(syntax/loc stx
|
||||||
(let ([id '**undefined**] ...)
|
(let ([id unique-undefined-value] ...)
|
||||||
(set! id expr) ...
|
(set! id expr) ...
|
||||||
(let () body ...)))]))
|
(let () body ...)))]))
|
||||||
|
|
||||||
|
@ -53,7 +54,7 @@
|
||||||
(syntax-case stx ()
|
(syntax-case stx ()
|
||||||
[(_ ([(id ...) expr] ...) body ...)
|
[(_ ([(id ...) expr] ...) body ...)
|
||||||
(syntax/loc stx
|
(syntax/loc stx
|
||||||
(let ([id '**undefined**] ... ...)
|
(let ([id unique-undefined-value] ... ...)
|
||||||
(set!-values (id ...) expr) ...
|
(set!-values (id ...) expr) ...
|
||||||
(let () body ...)))]))
|
(let () body ...)))]))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user