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.
10 lines
311 B
Racket
10 lines
311 B
Racket
23 years ago
|
(module token-syntax mzscheme
|
||
23 years ago
|
|
||
|
;; The things needed at compile time to handle definition of tokens
|
||
|
|
||
23 years ago
|
(provide make-terminals-def terminals-def-t terminals-def?
|
||
|
make-e-terminals-def e-terminals-def-t e-terminals-def?)
|
||
23 years ago
|
(define-struct terminals-def (t))
|
||
23 years ago
|
(define-struct e-terminals-def (t))
|
||
|
)
|