41 lines
1.7 KiB
Racket
41 lines
1.7 KiB
Racket
#lang racket/base
|
|
(require stxparse-info/parse/pre
|
|
"provide.rkt"
|
|
syntax/contract
|
|
(only-in stxparse-info/parse/private/residual ;; keep abs. path
|
|
this-context-syntax
|
|
this-role)
|
|
racket/contract/base)
|
|
|
|
(define not-given (gensym))
|
|
|
|
(define-syntax-class (expr/c ctc-stx
|
|
#:positive [pos-blame 'use-site]
|
|
#:negative [neg-blame 'from-macro]
|
|
#:macro [macro-name #f]
|
|
#:name [expr-name not-given]
|
|
#:context [ctx #f])
|
|
#:attributes (c)
|
|
#:commit
|
|
(pattern y:expr
|
|
#:with
|
|
c (wrap-expr/c ctc-stx
|
|
#'y
|
|
#:positive pos-blame
|
|
#:negative neg-blame
|
|
#:name (if (eq? expr-name not-given)
|
|
this-role
|
|
expr-name)
|
|
#:macro macro-name
|
|
#:context (or ctx (this-context-syntax)))))
|
|
|
|
(provide-syntax-class/contract
|
|
[expr/c (syntax-class/c (syntax?)
|
|
(#:positive (or/c syntax? string? module-path-index?
|
|
'from-macro 'use-site 'unknown)
|
|
#:negative (or/c syntax? string? module-path-index?
|
|
'from-macro 'use-site 'unknown)
|
|
#:name (or/c identifier? string? symbol? #f)
|
|
#:macro (or/c identifier? string? symbol? #f)
|
|
#:context (or/c syntax? #f)))])
|