trivial/private/common.rkt
2015-12-13 04:30:58 -05:00

13 lines
295 B
Racket

#lang racket/base
(provide
expand-expr
;; (-> Syntax Syntax)
;; Call local expand for an expression context with an empty list of stop-ids
)
;; =============================================================================
(define (expand-expr stx)
(local-expand stx 'expression '()))