macro-stepper: temp fix for drracket tool

closes PR 12349, closes PR 10396

The macro stepper tool broke when DrRacket started doing expansion
earlier, before eval handler gets control. This commit changes the
macro stepper to just expand module contents. No REPL, no evaluation.

The long-term fix might be to make the macro stepper cooperate more
closely with the module language.

original commit: 0db96352bf199423ae7ac4234ffc32c6f1a28888
This commit is contained in:
Ryan Culpepper 2011-11-29 18:45:24 -07:00
parent 32a5cfb1ac
commit d7456a2df6

View File

@ -1,5 +1,5 @@
#lang setup/infotab #lang setup/infotab
(define tools '(["tool.rkt"])) (define drracket-tools '(["tool.rkt"]))
(define tool-names '("Macro Stepper")) (define drracket-tool-names '("Macro Stepper"))
(define scribblings '(("macro-debugger.scrbl" () (tool-library)))) (define scribblings '(("macro-debugger.scrbl" () (tool-library))))