
No *residual* dependencies on racket/contract/base (the *disappearing* macro transformers and compile-time support do use contracts, though).
11 lines
361 B
Racket
11 lines
361 B
Racket
#lang racket/base
|
|
(require racket/contract/base
|
|
"parse/pre.rkt"
|
|
"parse/experimental/provide.rkt"
|
|
"parse/experimental/contract.rkt")
|
|
(provide (except-out (all-from-out "parse/pre.rkt")
|
|
static)
|
|
expr/c)
|
|
(provide-syntax-class/contract
|
|
[static (syntax-class/c [(-> any/c any/c) (or/c string? symbol? #f)])])
|