compatibility/racket/lib/collects/mzscheme/private/old-rp.rkt
Sam Tobin-Hochstadt b0043b013b Remove most uses of mzscheme in the core.
Remaining are:
 - parts of unit200 that Matthew plans to remove.
 - the `mzscheme` implementation itself.

The implementation of `mzscheme` has been moved
to the `mzscheme` collection (from the `racket` and
`scheme` collections). The `scheme/mzscheme`
language, which was undocumented, has been removed.

This is slightly backwards-incompatible, because
the `xform` handling of precompiled headers now
evaluates code in a `racket/base`-like namespace,
instead of in a `mzscheme`-like namespace.

original commit: d54c1e4e4942c26dcbaaebcc43d5c92d507a8112
2013-07-01 12:08:42 -04:00

66 lines
2.2 KiB
Racket

(module old-rp '#%kernel
(#%require (for-syntax '#%kernel racket/private/stx racket/private/small-scheme
racket/private/stxcase-scheme))
(#%provide require require-for-syntax require-for-template require-for-label
provide provide-for-syntax provide-for-label)
(begin-for-syntax
(define-values (rebuild-elem)
(lambda (stx elem sub pos loop ids)
;; For sub-forms, we loop and reconstruct:
(for-each (lambda (id)
(unless (identifier? id)
(raise-syntax-error
#f
"expected an identifier"
stx
id)))
(syntax->list ids))
(let rloop ([elem elem][pos pos])
(if (syntax? elem)
(datum->syntax elem
(rloop (syntax-e elem) pos)
elem
elem)
(if (zero? pos)
(cons (loop (car elem))
(cdr elem))
(cons (car elem)
(rloop (cdr elem) (sub1 pos)))))))))
(define-syntaxes (require require-for-syntax require-for-template require-for-label)
(let ([mk
(lambda (for-stx)
(lambda (stx)
(syntax-case stx ()
[(_ elem ...)
(if for-stx
(with-syntax ([for for-stx])
(syntax/loc stx
(#%require (for-meta for (just-meta 0 elem ...)))))
(syntax/loc stx
(#%require elem ...)))])))])
(values (mk #f)
(mk #'1)
(mk #'-1)
(mk #'#f))))
(define-syntaxes (provide provide-for-syntax provide-for-label)
(let ([mk
(lambda (for-stx)
(lambda (stx)
(syntax-case stx ()
[(_ elem ...)
(if for-stx
(with-syntax ([for for-stx])
(syntax/loc stx
(#%provide (for elem ...))))
(syntax/loc stx
(#%provide elem ...)))])))])
(values (mk #f)
(mk #'for-syntax)
(mk #'for-label)))))