You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.4 KiB
Racket
40 lines
1.4 KiB
Racket
#lang racket/base
|
|
(require (for-syntax racket/base racket/syntax))
|
|
(require racket/contract "../define/provide.rkt" "value.rkt")
|
|
|
|
|
|
(define-syntax-rule (make-blame-handler try-proc expected-sym)
|
|
(λ(b)
|
|
(λ(x)
|
|
(with-handlers ([exn:fail? (λ(e)
|
|
(raise-blame-error
|
|
b x
|
|
'(expected: "~a" given: "~e")
|
|
expected-sym x))])
|
|
(try-proc x)))))
|
|
|
|
(provide make-coercion-contract)
|
|
(define-syntax (make-coercion-contract stx)
|
|
(syntax-case stx ()
|
|
[(_ stem coerce-proc)
|
|
(with-syntax ([coerce/stem? (format-id stx "coerce/~a?" #'stem)]
|
|
[can-be-stem? (format-id stx "can-be-~a?" #'stem)])
|
|
#'(make-contract
|
|
#:name 'coerce/stem?
|
|
#:projection (make-blame-handler coerce-proc 'can-be-stem?)))]
|
|
[(_ stem)
|
|
(with-syntax ([->stem (format-id stx "->~a" #'stem)])
|
|
#'(make-coercion-contract stem ->stem))]))
|
|
|
|
(define-syntax (define+provide-coercion-contract stx)
|
|
(syntax-case stx ()
|
|
[(_ stem)
|
|
(with-syntax ([coerce/stem? (format-id stx "coerce/~a?" #'stem)])
|
|
#'(define+provide coerce/stem? (make-coercion-contract stem)))]))
|
|
|
|
(define+provide-coercion-contract int)
|
|
(define+provide-coercion-contract string)
|
|
(define+provide-coercion-contract symbol)
|
|
(define+provide-coercion-contract path)
|
|
(define+provide-coercion-contract boolean)
|