original commit: 014abe64c0ab76977bd69693dc8d1e3fb6a9a1c5
tokens
Robby Findler 11 years ago
parent 1acb3c8401
commit f79949dce3

@ -1,4 +1,4 @@
;; This implements the equivalent of mzscheme's read-syntax for R5RS scheme.
;; This implements the equivalent of racket's read-syntax for R5RS scheme.
;; It has not been thoroughly tested. Also it will read an entire file into a
;; list of syntax objects, instead of returning one syntax object at a time
@ -59,7 +59,7 @@
[comment (:: #\; (:* (:~ #\newline)) #\newline)]
;; See ${PLTHOME}/collects/syntax-color/scheme-lexer.rkt for an example of
;; See ${PLTHOME}/collects/syntax-color/racket-lexer.rkt for an example of
;; using regexp macros to avoid the cut and paste.
; [numR (:: prefixR complexR)]
; [complexR (:or realR

@ -54,7 +54,7 @@ style lexer and parser generators.
@racket[re]'s against the buffer, and returns the result of
executing the corresponding @racket[action-expr].
@margin-note{The implementation of @racketmodname[syntax-color/scheme-lexer]
@margin-note{The implementation of @racketmodname[syntax-color/racket-lexer]
contains a lexer for the @racketmodname[racket] language.
In addition, files in the @filepath{examples} sub-directory
of the @filepath{parser-tools} collection contain

Loading…
Cancel
Save