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.
25 lines
1022 B
Racket
25 lines
1022 B
Racket
#lang br
|
|
(require brag/support
|
|
racket/string)
|
|
|
|
(provide tokenize)
|
|
(define (tokenize input-port)
|
|
(define (next-token)
|
|
(define get-token
|
|
(lexer
|
|
[(union
|
|
(:seq "/*" (complement (:seq any-string "*/" any-string)) "*/")
|
|
(:seq "//" (repetition 1 +inf.0 (char-complement #\newline)) #\newline))
|
|
(token 'COMMENT lexeme #:skip? #t)]
|
|
[(union #\tab #\space #\newline) (get-token input-port)]
|
|
[(repetition 1 +inf.0 (union upper-case (char-set "="))) lexeme]
|
|
[(:seq "\"" (complement (:seq any-string "\"" any-string)) "\"") (token 'STRING (string-trim lexeme "\""))]
|
|
[(:seq "---"
|
|
(repetition 1 +inf.0 (union alphabetic numeric punctuation))
|
|
"---") (token 'DASHED-NAME (string->symbol (string-trim lexeme "-" #:repeat? #t)))]
|
|
[(repetition 1 +inf.0 (union alphabetic numeric (char-set "-!?.#'")))
|
|
(token 'ID (read (open-input-string lexeme)))]
|
|
[any-char lexeme]))
|
|
(get-token input-port))
|
|
next-token)
|