Ported more code to new contract tools.
svn: r17733 original commit: 722fae41a8e5e74a053336ab6e5bc32f3487870d
This commit is contained in:
parent
6e0495d778
commit
9747444199
|
@ -33,7 +33,7 @@
|
|||
(let ([proj-x (contract-projection rngs-x)] ...)
|
||||
(simple-contract
|
||||
#:name
|
||||
(build-compound-type-name 'unconstrained-domain-> ((name-get rngs-x) rngs-x) ...)
|
||||
(build-compound-type-name 'unconstrained-domain-> (contract-name rngs-x) ...)
|
||||
#:projection
|
||||
(λ (blame)
|
||||
(let ([p-app-x (proj-x blame)] ...)
|
||||
|
|
|
@ -2,9 +2,11 @@
|
|||
|
||||
(provide define/contract)
|
||||
|
||||
(require (for-syntax scheme/base)
|
||||
(require (for-syntax scheme/base
|
||||
unstable/srcloc
|
||||
(prefix-in a: scheme/contract/private/helpers))
|
||||
(only-in scheme/contract contract)
|
||||
(for-syntax (prefix-in a: scheme/contract/private/helpers)))
|
||||
unstable/location)
|
||||
|
||||
;; First, we have the old define/contract implementation, which
|
||||
;; is still used in mzlib/contract.
|
||||
|
@ -12,7 +14,7 @@
|
|||
(define-for-syntax (make-define/contract-transformer contract-id id)
|
||||
(make-set!-transformer
|
||||
(λ (stx)
|
||||
(with-syntax ([neg-blame-str (a:build-src-loc-string stx)]
|
||||
(with-syntax ([neg-blame-str (source-location->string stx)]
|
||||
[contract-id contract-id]
|
||||
[id id])
|
||||
(syntax-case stx (set!)
|
||||
|
@ -27,7 +29,8 @@
|
|||
id
|
||||
(syntax->datum (quote-syntax f))
|
||||
neg-blame-str
|
||||
(quote-syntax f))
|
||||
(quote f)
|
||||
(quote-srcloc f))
|
||||
arg
|
||||
...))]
|
||||
[ident
|
||||
|
@ -37,7 +40,8 @@
|
|||
id
|
||||
(syntax->datum (quote-syntax ident))
|
||||
neg-blame-str
|
||||
(quote-syntax ident)))])))))
|
||||
(quote ident)
|
||||
(quote-srcloc ident)))])))))
|
||||
|
||||
;; (define/contract id contract expr)
|
||||
;; defines `id' with `contract'; initially binding
|
||||
|
|
Loading…
Reference in New Issue
Block a user