Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lexer and Parser Generators for Common Lisp [closed]

Can you recommend lexer and parser generators for Common Lisp? I have seen the following lists on CLiki, but most on the lists seem to be in their alpha stages:

  • http://www.cliki.net/LEXER
  • http://www.cliki.net/parser%20generator

So it would be helpful if you could share your good or bad experience with any of them or recommend other alternatives. I prefer a tool which is similar to traditional lex/yacc tools for other languages, but other approaches will be also welcome.

like image 264
user1628266 Avatar asked Sep 05 '12 02:09

user1628266


1 Answers

There is smug (documentation), which provides "functional" parsers that are supposedly similar to some of Haskell's parsing libraries.

Also, if you're looking for Lex/Yacc style parsing, look into lispbuilder, which has lexer and yacc packages that seem mature.

like image 99
krzysz00 Avatar answered Nov 11 '22 03:11

krzysz00