Rename unstable/wrapc to syntax/contract.

This commit is contained in:
Vincent St-Amour 2015-07-31 11:32:57 -05:00
parent 265b777b93
commit 102fbff5d2
4 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#lang racket/base
(require racket/contract/base
(for-syntax racket/base
unstable/wrapc))
syntax/contract))
;; A Queue contains a linked list with mutable cdrs, holding two pointers
;; to the head and the tail -- where items are pulled from the head and

View File

@ -1,7 +1,7 @@
#lang racket/base
(require syntax/parse/pre
"provide.rkt"
unstable/wrapc
syntax/contract
(only-in syntax/parse/private/residual ;; keep abs. path
this-context-syntax
this-role)

View File

@ -8,7 +8,7 @@
syntax/parse/pre
syntax/parse/private/residual-ct ;; keep abs. path
"../private/kws.rkt"
unstable/wrapc))
syntax/contract))
(provide provide-syntax-class/contract
syntax-class/c
splicing-syntax-class/c)