removed the re-providing from internal files in the contract impl.

original commit: b8c7a753d3e6c06190cbe3560610710c48131960
This commit is contained in:
Robby Findler 2011-03-28 14:56:25 -05:00
parent 5bd3e1f45a
commit 124283c808
6 changed files with 15 additions and 4 deletions

View File

@ -47,6 +47,8 @@
racket/contract/private/misc
racket/contract/private/provide
racket/contract/private/guts
racket/contract/private/prop
racket/contract/private/blame
racket/contract/private/ds
racket/contract/private/opt
racket/contract/private/basic-opters)
@ -67,7 +69,9 @@
(rename-out [string-len/c string/len])
(except-out (all-from-out racket/contract/private/guts)
check-flat-contract
check-flat-named-contract))
check-flat-named-contract)
(all-from-out racket/contract/private/prop
racket/contract/private/blame))
;; copied here because not provided by racket/contract anymore

View File

@ -1,7 +1,8 @@
#lang racket/base
(provide (all-defined-out))
(require racket/contract/private/guts)
(require racket/contract/private/guts
racket/contract/private/blame)
(define empty-case-lambda/c
(flat-named-contract '(case->)

View File

@ -4,7 +4,9 @@
(require (for-syntax scheme/base))
(require (for-template scheme/base)
(for-template racket/contract/private/guts)
(for-template racket/contract/private/guts
racket/contract/private/prop
racket/contract/private/blame)
(for-template "contract-arr-checks.rkt"))
(provide make-/proc ->/h ->*/h ->d/h ->d*/h ->r/h

View File

@ -1,6 +1,8 @@
#lang racket/base
(require racket/contract/private/guts
racket/contract/private/blame
racket/contract/private/prop
racket/contract/private/opt
"contract-arr-checks.rkt")
(require (for-syntax racket/base)

View File

@ -4,7 +4,8 @@
(only-in racket/contract/private/vector
vector-immutableof vector-immutable/c)
racket/contract/private/blame
racket/contract/private/guts)
racket/contract/private/guts
racket/contract/private/prop)
(provide box/c box-immutable/c
vector/c vectorof vector-immutableof vector-immutable/c)

View File

@ -1,6 +1,7 @@
#lang racket/base
(require "contract-arrow.rkt"
racket/contract/private/guts
racket/contract/private/prop
racket/private/class-internal
"contract-arr-checks.rkt")