From owner-cvs-all Mon Jun 4 20:48:47 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B84537B401; Mon, 4 Jun 2001 20:48:43 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f553mh377790; Mon, 4 Jun 2001 20:48:43 -0700 (PDT) (envelope-from mi) Message-Id: <200106050348.f553mh377790@freefall.freebsd.org> From: Mikhail Teterin Date: Mon, 4 Jun 2001 20:48:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/lemon Makefile distinfo pkg-comment pkg-descr pkg-plist ports/devel/lemon/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2001/06/04 20:48:42 PDT Modified files: devel Makefile Added files: devel/lemon Makefile distinfo pkg-comment pkg-descr pkg-plist devel/lemon/files patch-aa Log: 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/ Revision Changes Path 1.554 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message