You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(source return) ; save the continuation to the `source` parameter
flo)))
(define-qi-syntax-parser readout
[_:id #'(esc
(λ args
(let ([src (source)])
;; reset source to avoid the possibility of stale
;; continuations used later outside of a `probe`
(source default-source)
(apply src args))))])
It might obviate the need for (source default-source), but does the parameterize belong around call/cc or within it? What happens in the presence of a threading (as in thread) backend? Etc.
The text was updated successfully, but these errors were encountered:
qi/qi-probe/probe.rkt
Lines 67 to 80 in 601d1b6
It might obviate the need for
(source default-source)
, but does the parameterize belong aroundcall/cc
or within it? What happens in the presence of a threading (as inthread
) backend? Etc.The text was updated successfully, but these errors were encountered: