move lazy-require to racket/lazy-require

original commit: fd7d8a412cd9d6c4cb8b4c2e43dabd65890267b8
This commit is contained in:
Ryan Culpepper 2012-12-03 17:24:38 -05:00
parent 233e8964eb
commit eb40161575
8 changed files with 8 additions and 8 deletions

View File

@ -48,7 +48,7 @@ This file defines two sorts of primitives. All of them are provided into any mod
"base-types-extra.rkt"
racket/flonum ; for for/flvector and for*/flvector
(for-syntax
unstable/lazy-require
racket/lazy-require
syntax/parse
racket/syntax
racket/base

View File

@ -5,7 +5,7 @@
(require "../types/tc-error.rkt"
syntax/id-table
unstable/lazy-require)
racket/lazy-require)
(provide register-type register-type-if-undefined
finish-register-type
maybe-finish-register-type

View File

@ -3,7 +3,7 @@
racket/match
racket/set
(for-syntax racket/base)
unstable/lazy-require
racket/lazy-require
(contract-req))
;; Ugly hack - should use units

View File

@ -5,7 +5,7 @@
(contract-req)
"free-variance.rkt"
"interning.rkt" unstable/struct
unstable/lazy-require
racket/lazy-require
racket/stxparam
(for-syntax
racket/match

View File

@ -5,7 +5,7 @@
"rep-utils.rkt" "object-rep.rkt" "filter-rep.rkt" "free-variance.rkt"
racket/match ;mzlib/etc
racket/contract
unstable/lazy-require
racket/lazy-require
(for-syntax racket/base syntax/parse))
;; Ugly hack - should use units

View File

@ -14,7 +14,7 @@
;; avoid the other dependencies of `racket/place`
'#%place
unstable/function
unstable/lazy-require
racket/lazy-require
(except-in racket/contract/base ->* -> one-of/c)
(prefix-in c: racket/contract/base)
(for-syntax racket/base syntax/parse racket/list)

View File

@ -8,7 +8,7 @@
racket/match
racket/set
racket/contract
unstable/lazy-require)
racket/lazy-require)
(lazy-require ("union.rkt" (Un)))
(provide subst-all substitute substitute-dots substitute-dotted subst

View File

@ -6,7 +6,7 @@
(env type-name-env)
racket/match unstable/match
racket/function
unstable/lazy-require
racket/lazy-require
(prefix-in c: racket/contract)
(for-syntax racket/base syntax/parse))