*** empty log message ***

original commit: a728b7f068d0fd112673890d7862239c08c53c8f
tokens
Scott Owens 20 years ago
parent 4db0a02c2d
commit 7b76f564c9

@ -214,10 +214,11 @@
(vector-ref actions start-state)) (vector-ref actions start-state))
;; how many characters have been read ;; how many characters have been read
;; including the one just read ;; including the one just read
(length 1) (length-bytes (char-utf-8-length first-char))
(length-chars 1)
;; how many characters are in the longest match ;; how many characters are in the longest match
(longest-match-length 1)) (longest-match-length 1))
;; (printf "(peek-char-or-special port ~e) = ~e~n" (sub1 length) char) ;; (printf "(peek-char-or-special port ~e) = ~e~n" (sub1 length-bytes) char)
(let ((next-state (let ((next-state
(cond (cond
((eof-object? char) #f) ((eof-object? char) #f)
@ -227,25 +228,26 @@
(cond (cond
((not next-state) ((not next-state)
(check-match ip first-pos longest-match-length (check-match ip first-pos longest-match-length
length longest-match-action wrap?)) length-chars longest-match-action wrap?))
((vector-ref no-lookahead next-state) ((vector-ref no-lookahead next-state)
(let ((act (vector-ref actions next-state))) (let ((act (vector-ref actions next-state)))
(check-match ip (check-match ip
first-pos first-pos
(if act length longest-match-length) (if act length-chars longest-match-length)
length length-chars
(if act act longest-match-action) (if act act longest-match-action)
wrap?))) wrap?)))
(else (else
(let ((act (vector-ref actions next-state))) (let ((act (vector-ref actions next-state)))
(lexer-loop next-state (lexer-loop next-state
(peek-char-or-special ip length) (peek-char-or-special ip length-bytes)
(if act (if act
act act
longest-match-action) longest-match-action)
(add1 length) (+ (char-utf-8-length char) length-bytes)
(add1 length-chars)
(if act (if act
length length-chars
longest-match-length))))))))))))) longest-match-length)))))))))))))
lexer)) lexer))

Loading…
Cancel
Save