Related articles |
---|
editor for creating grammar philipp.kraus@flashpixx.de (Philipp Kraus) (2010-04-28) |
Re: editor for creating grammar gneuner2@comcast.net (George Neuner) (2010-05-01) |
From: | George Neuner <gneuner2@comcast.net> |
Newsgroups: | comp.compilers |
Date: | Sat, 01 May 2010 20:47:56 -0400 |
Organization: | A noiseless patient Spider |
References: | 10-04-070 |
Keywords: | editor |
Posted-Date: | 02 May 2010 22:23:22 EDT |
On Wed, 28 Apr 2010 20:04:35 +0200, Philipp Kraus
<philipp.kraus@flashpixx.de> wrote:
>I try to create my own language in EBNF structure. At this time I use
>AntLR for creating the grammar and testing my grammar rules.
>But AntLR seems to be a little bit buggy. Same grammar run in one
>hand perfectly and on the other hand the grammar crashs AntLR down.
Antlr isn't really buggy, but the LL* versions (3 and up) can be
pretty picky about some things. Are you using the AntlrWorks tool to
create your grammar or are you just using a text editor?
It might help if you posted the grammar that breaks.
>Do anyone know a tool for create grammars with a interpreter and
>graphical view of the grammar? I use OS X and Linux and will take
>the rules to C++ with Bison.
Antlr grammars won't work with Bison - they are not compatible.
Most tools do not have an IDE. I'm afraid I don't know of any
Unix/Linux IDEs for working with LR grammars. There are some for
Windows and some which run on JVM (which would work on any platform).
See http://en.wikipedia.org/wiki/Comparison_of_parser_generators
>Phil
George
Return to the
comp.compilers page.
Search the
comp.compilers archives again.