Skip to content

Commit

Permalink
Handle quote-syntax.
Browse files Browse the repository at this point in the history
Fixes #178. Related to #168.
  • Loading branch information
samth committed Oct 11, 2022
1 parent 9175540 commit d2aa76a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion htdp-lib/stepper/private/reconstruct.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -518,8 +518,9 @@

; quote
[(quote body) (recon-value (eval-quoted expr) render-settings)]
[(quote-syntax v #:local) (recon-value (eval-quoted #'(quote v)) render-settings)]
[(quote-syntax v) (recon-value (eval-quoted #'(quote v)) render-settings)]

; quote-syntax : like set!, the current stepper cannot handle quote-syntax

; with-continuation-mark
[(with-continuation-mark . rest) (recon-basic)]
Expand Down

0 comments on commit d2aa76a

Please sign in to comment.