Skip to content

Instantly share code, notes, and snippets.

@stchang
Created September 5, 2013 03:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stchang/6445553 to your computer and use it in GitHub Desktop.
Save stchang/6445553 to your computer and use it in GitHub Desktop.
#lang racket
(require (for-syntax syntax/parse
racket/syntax
racket/list
racket/string
racket/function
racket/format))
(require scribble/manual)
(provide defn defn- defn/typed defn-/typed)
(begin-for-syntax
(define-syntax-class def
(pattern
(defn (ID ARG:arg ... _:arrow RET-TYPE)
(~seq #:doc DOC-STR) ...
(~seq #:ex [EX-ARGS ... _:arrow EX-RESULT]) ...
BODY ...+)
#:attr req?s (syntax->datum #'(ARG.req? ...))
#:attr types (syntax->list #'(ARG.type ...))
#:with (REQ-ARG-TYPES ...)
(for/list ([req? (attribute req?s)] [type (attribute types)] #:when req?)
type)
#:with
(OPT-ARG-TYPES ...)
(for/list ([req? (attribute req?s)] [type (attribute types)] #:unless req?)
type)
#:with
CONTRACT
#'(->* (REQ-ARG-TYPES ...) (OPT-ARG-TYPES ...) RET-TYPE)
#:with
((ARG-DECL ...) ...) #'(ARG.decl ...)
#:with
TEST #'(module+ test
(require rackunit)
(check-equal? (ID EX-ARGS ...) EX-RESULT) ...)
#:with
DOC #`(module+ doc
(defproc (ID ARG ...) RET-TYPE
DOC-STR ... "\n"
#,(cond [(= 0 (length (syntax->list #'(EX-RESULT ...)))) ""]
[else "Examples:\n"])
#,@(map (lambda (args res)
(format "> (~a ~a)\n~a\n"
(syntax->datum #'ID)
(string-join
(map (compose ~a syntax->datum)
(syntax->list args)))
(syntax->datum res)))
(syntax->list #'((EX-ARGS ...) ...))
(syntax->list #'(EX-RESULT ...)))))
#:with sig #'(ID ARG-DECL ... ...)))
(define-syntax-class arrow
#:description "-> or =>"
(pattern (~or (~datum ->) (~datum =>))))
(define-syntax-class arg
#:description "function argument [ [#:keyword] id contract [default] ]"
(pattern [(~seq id:id type:expr)]
#:attr decl #'(id)
#:with req? #t)
(pattern [(~seq kw:keyword id:id type:expr)]
#:attr decl #'(kw id)
#:with req? #t)
(pattern [(~seq id:id type:expr default:expr)]
#:attr decl #'([id default])
#:with req? #f)
(pattern [(~seq kw:keyword id:id type:expr default:expr)]
#:attr decl #'(kw [id default])
#:with req? #f))
) ; end begin-for-syntax
(define-syntax (defn stx)
(syntax-parse stx
[d:def #`(begin
(define d.sig d.BODY ...)
(provide (contract-out [d.ID d.CONTRACT]))
d.TEST
d.DOC)]))
(define-syntax (defn- stx)
(syntax-parse stx
[d:def #`(begin
(define/contract d.sig d.CONTRACT d.BODY ...)
d.TEST
d.DOC)]))
(define-syntax (defn/typed stx)
(syntax-parse stx
[d:def #`(begin
;; Big TO-DO: Opt args and kw args
#'(: d.ID (d.REQ-ARG-TYPES ... -> d.RET-TYPE))
(define d.sig d.BODY ...)
(provide d.ID))]))
(define-syntax (defn-/typed stx)
(syntax-parse stx
[d:def #`(begin
;; Big TO-DO: Opt args and kw args
#'(: d.ID (d.REQ-ARG-TYPES ... -> d.RET-TYPE))
(define d.sig d.BODY ...))]))
(defn (f1 [x number?] -> number?) x)
(defn- (f2 [x number?] -> number?) x)
(defn/typed (f3 [x number?] -> number?) x)
(defn-/typed (f4 [x number?] -> number?) x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment