Commit graph

5 commits

Author SHA1 Message Date
Edwin Groothuis
acd87b4ad8 SHA256ify
Approved by:    krion@
2006-01-22 08:34:46 +00:00
Sean Chittenden
1ebfd2e424 Update lemon to 1.33 (a very fast, thread safe C parser generator). New
grammar features and performance optimizations.

http://www.sqlite.org/cvstrac/rlog?f=sqlite/tool/lempar.c
http://www.sqlite.org/cvstrac/rlog?f=sqlite/tool/lemon.c
2005-03-04 18:29:41 +00:00
Sean Chittenden
05b5790442 Update lemon to incorporate the CLI options found in the previous version,
before updating to the version found in SQLite.
2003-10-15 00:12:18 +00:00
Sean Chittenden
f0c5297c3a Update lemon to the latest version in the SQLite repo. Please let me know
if there are any grammar problems with this newer version.  Assume
maintainership.

Approved by:	maintainer
2003-10-14 00:38:33 +00:00
Mikhail Teterin
258dab36c2 The Lemon program is an LALR(1) parser generator. It takes a context
free grammar  and converts it into  a subroutine that will  parse a file
using that grammar.

Lemon is  similar to the much  more famous programs "YACC"  and "BISON".
But lemon is not compatible with either yacc or bison. There are several
important differences:

	. Lemon using a different grammar  syntax which is less prone to
	  programming errors.

	. Lemon generates a parser that is faster than Yacc or Bison
	  parsers (according to the author).

	. The parser generated by Lemon is both re-entrant and thread-safe.

	. Lemon includes the concept of a non-terminal destructor, which
	  makes  it much  easier  to write  a parser  that  does not
	  leak memory.

WWW: http://www.hwaci.com/sw/lemon/
2001-06-05 03:48:42 +00:00