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.
12 lines
475 B
Racket
12 lines
475 B
Racket
#lang br
|
|
|
|
(module reader br
|
|
(require br/reader-utils "parser.rkt" "tokenizer.rkt")
|
|
(define-read-and-read-syntax (source-path port)
|
|
(define-values (line col pos) (port-next-location port))
|
|
(define port+newline (input-port-append #f port (open-input-string "\n")))
|
|
(port-count-lines! port+newline)
|
|
(set-port-next-location! port+newline line col pos)
|
|
#`(module hdl-mod hdl-tst-demo/expander
|
|
#,(parse source-path (make-tokenizer port+newline)))))
|