Attempt to fix "#%module-begin: cannot use identifier tainted by macro transformation" error due to srcloc fix

This commit is contained in:
Georges Dupéron 2016-08-18 02:07:59 +02:00
parent 1c0429e109
commit 5f0f390ca6
2 changed files with 11 additions and 14 deletions

View File

@ -26,6 +26,7 @@ env:
# The `debug` package used just for the tests does not work on 6.1 and 6.1.1
#- RACKET_VERSION=6.1
#- RACKET_VERSION=6.1.1
# in v6.2, error "#%module-begin: cannot use identifier tainted by macro transformation" on files which use #lang repltest typed/racket
- RACKET_VERSION=6.2
- RACKET_VERSION=6.3
- RACKET_VERSION=6.4

View File

@ -49,26 +49,22 @@
(reader chr (narrow-until-prompt in) src line col pos))
(define/with-syntax (mod nam lang (modbeg . body))
#;(eval-syntax (replace-top-loc #'(expand #'orig-mod)
(syntax-source #'here)
#'orig-mod)
#;(eval-syntax (syntax/loc #'orig-mod (expand #'orig-mod))
(variable-reference->namespace (#%variable-reference)))
(parameterize ([current-namespace (variable-reference->namespace
(#%variable-reference))])
(expand #'orig-mod)))
;; quasisyntax/loc Necessary so that the generated code has the correct srcloc
(replace-top-loc
#`(mod nam lang
(modbeg
(module* test racket/base
(require repltest/private/run-interactions)
;; TODO: set-port-next-location! for (open-input-string …)
(run-interactions (open-input-string #,(port->string in))
(#%variable-reference)))
. body))
(syntax-source #'here)
#'mod))
(quasisyntax/loc #'mod
(mod nam lang
(modbeg
(module* test racket/base
(require repltest/private/run-interactions)
;; TODO: set-port-next-location! for (open-input-string …)
(run-interactions (open-input-string #,(port->string in))
(#%variable-reference)))
. body))))
(define-values (repltest-read repltest-read-syntax repltest-get-info)
(make-meta-reader