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.
|
|
|
#lang br/quicklang
|
|
|
|
(require "struct.rkt" "run.rkt" "elements.rkt")
|
|
|
|
(provide (rename-out [b-module-begin #%module-begin])
|
|
|
|
(all-from-out "elements.rkt"))
|
|
|
|
|
|
|
|
(define-macro (b-module-begin (b-program LINE ...))
|
|
|
|
(with-pattern
|
|
|
|
([((b-line NUM STMT ...) ...) #'(LINE ...)]
|
|
|
|
[(LINE-FUNC ...) (prefix-id "line-" #'(NUM ...))]
|
|
|
|
[(VAR-ID ...) (find-unique-var-ids #'(LINE ...))])
|
|
|
|
#'(#%module-begin
|
|
|
|
(define VAR-ID 0) ...
|
|
|
|
LINE ...
|
|
|
|
(define line-table
|
|
|
|
(apply hasheqv (append (list NUM LINE-FUNC) ...)))
|
|
|
|
(void (run line-table)))))
|
|
|
|
|
|
|
|
(begin-for-syntax
|
|
|
|
(require racket/list)
|
|
|
|
(define (find-unique-var-ids line-stxs)
|
|
|
|
(remove-duplicates
|
|
|
|
(for/list ([stx (in-list (stx-flatten line-stxs))]
|
|
|
|
#:when (syntax-property stx 'b-id))
|
|
|
|
stx)
|
|
|
|
#:key syntax->datum)))
|
|
|
|
|