14 lines
554 B
Racket
14 lines
554 B
Racket
#lang racket/base
|
|
(require racket/contract/base
|
|
"parse/private/sc.rkt"
|
|
"parse/private/litconv.rkt"
|
|
"parse/private/lib.rkt"
|
|
"parse/experimental/provide.rkt")
|
|
(provide (except-out (all-from-out "parse/private/sc.rkt")
|
|
syntax-parser/template parser/rhs)
|
|
(all-from-out "parse/private/litconv.rkt")
|
|
(except-out (all-from-out "parse/private/lib.rkt")
|
|
static))
|
|
(provide-syntax-class/contract
|
|
[static (syntax-class/c [(-> any/c any/c) (or/c string? symbol? #f)])])
|