You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
beautiful-racket/beautiful-racket-demo/jsonic-demo-2/reader.rkt

11 lines
370 B
Racket

8 years ago
#lang br/quicklang
7 years ago
(require "tokenizer.rkt" "parser.rkt" racket/contract)
8 years ago
8 years ago
(define/contract (read-syntax path port)
(any/c input-port? . -> . syntax?)
8 years ago
(define parse-tree (parse path (tokenize port)))
7 years ago
(define module-datum `(module jsonic-module jsonic-demo-2/expander
8 years ago
,parse-tree))
(datum->syntax #f module-datum))
(provide read-syntax)