catching tail-calling bug. Appears the siuation is: if the tail call is a values, but there's some let bindings that we need to wipe out, we haven't done the proper cleanup.
This commit is contained in:
parent
f189201ee0
commit
e4f9481bc1
3
tests/more-tests/isolating-bug.expected
Normal file
3
tests/more-tests/isolating-bug.expected
Normal file
|
@ -0,0 +1,3 @@
|
|||
#<procedure:make-swf>
|
||||
#<procedure:swf?>
|
||||
#<procedure:swf-f>
|
29
tests/more-tests/isolating-bug.rkt
Normal file
29
tests/more-tests/isolating-bug.rkt
Normal file
|
@ -0,0 +1,29 @@
|
|||
#lang planet dyoo/whalesong/base
|
||||
(require (for-syntax racket/base
|
||||
syntax/struct))
|
||||
|
||||
|
||||
(define-syntax (my-define-struct stx)
|
||||
(syntax-case stx ()
|
||||
[(_ name (fields ...) kw ...)
|
||||
(with-syntax ([(names ...)
|
||||
(build-struct-names #'name
|
||||
(syntax->list #'(fields ...))
|
||||
#f
|
||||
#f)])
|
||||
(with-syntax ([cnstr (syntax-case #'(names ...) ()
|
||||
[(struct:name-id constructor misc ...)
|
||||
#'constructor])])
|
||||
#'(begin
|
||||
(define-values (names ...)
|
||||
(let ()
|
||||
(begin
|
||||
(define-struct name (fields ...) kw ...)
|
||||
(let ([cnstr (lambda args
|
||||
(apply cnstr args))])
|
||||
(values names ...))))))))]))
|
||||
|
||||
(my-define-struct swf (f) #:mutable)
|
||||
make-swf
|
||||
swf?
|
||||
swf-f
|
Loading…
Reference in New Issue
Block a user