From: Eric Mahurin Date: 2005-11-21T04:22:46+09:00 Subject: Re: ruby lexer/parser package ? On 11/20/05, didier.prophete@gmail.com wrote: > David, James, Eric, > > Thanks a lot guys. > Now, I didn't see any obvious lexer package out there, but maybe I need > to spend more time looking at the examples. > > -Didier For mine, a lexer and parser are made identically - one parses characters and the other tokens. On one extreme, you can make a lexer-free parser and on the other you could make multi-level (more than just lexer/parser) language transformer/compiler.