From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,5e5720326407cb2d,start X-Google-Attributes: gid103376,public From: J Chapman Flack Subject: Parser/lexer generator ANTLR Date: 1999/02/17 Message-ID: <36CB37AB.2313@cs.purdue.edu>#1/1 X-Deja-AN: 445466081 Content-Transfer-Encoding: 7bit Organization: Purdue University Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 1999-02-17T00:00:00+00:00 List-Id: Hello, I'm not a c.l.ada regular, but Markus Kuhn suggested I post something about ANTLR in case it could be of interest. ANTLR (ANother Tool for Language Recognition) is a pretty mature (in use for much of this decade) free, open-source parser and lexer generator with built-in support for building abstract syntax trees and "tree parsers" that apply transformations to them. ANTLR itself is implemented in Java but produces parsers and lexers in any language supported by a backend. The backends currently included produce Java, C++, HTML (for documentation of grammars), and "Diagnostics" (for detailed dissection of grammars). A graphical (Java Swing) "ParseView" debugger is included for exploring the parser's operation visually. I don't know what parser/lexer tools are already available in the Ada community but writing an Ada backend to plug into ANTLR ought to be a reasonable project if anyone is interested. The ANTLR home page is http://www.antlr.org/ Cheers, Chapman Flack, Purdue University "just a recent jumper-on to the ANTLR bandwagon" > You might want to announce this project on comp.lang.ada, because there > might be enthusiastic volunteers out there who would be willing to add > an Ada95 backend as well. (Ada95: faster than Java and safer than C++.) > Markus