*** empty log message ***

original commit: a2449d4255164becbd71626ee707c6b908079434
tokens
Scott Owens 22 years ago
parent a261d785d0
commit 08d835e993

@ -14,7 +14,6 @@
get-position position-offset position-line position-col position?
define-tokens define-empty-tokens)
(define-syntaxes (lexer lexer-src-pos)
(let ((build-lexer
(lambda (wrap?)
@ -37,22 +36,15 @@
(trans-table-stx (table-trans table))
(eof-table-stx (table-eof table))
(no-lookahead-stx (table-no-lookahead table))
(actions-stx `(vector ,@(vector->list (table-actions table)))))
(if wrap?
(syntax
(lexer-body start-state-stx
trans-table-stx
eof-table-stx
actions-stx
no-lookahead-stx
#t))
(syntax
(lexer-body start-state-stx
trans-table-stx
eof-table-stx
actions-stx
no-lookahead-stx
#f))))))))))))
(actions-stx `(vector ,@(vector->list (table-actions table))))
(wrap? wrap?))
(syntax
(lexer-body start-state-stx
trans-table-stx
eof-table-stx
actions-stx
no-lookahead-stx
wrap?)))))))))))
(values
(build-lexer #f)
(build-lexer #t))))

Loading…
Cancel
Save