Grammar Writing Tools - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T08:08:30Z http://stackoverflow.com/feeds/question/264262 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/264262/grammar-writing-tools 5 Grammar Writing Tools coppro 2008-11-05T03:16:58Z 2008-11-26T16:34:58Z <p>I am trying to write a grammar in EBNF (barring a really good reason, it has to be EBNF) and am looking for a couple of utilities for it - if there's a GUI interface that can make one, that would be great, but the thing I'm looking for most is something that can check the grammar, for instance to see if it is LALR(<em>n</em>), and if so, what the value of <em>n</em> is. Do such utilities exist? Are there any other useful grammar-writing tools I should know about (I'm not looking for parser generators).</p> http://stackoverflow.com/questions/264262/grammar-writing-tools/264532#264532 0 Answer by Gamecat for Grammar Writing Tools Gamecat 2008-11-05T07:10:46Z 2008-11-05T07:10:46Z <p>I use notepad(+) for EBNF projects. Normally that is not a problem. Besides that I use my own program to convert the EBNF to xhtml for easy reading.</p> http://stackoverflow.com/questions/264262/grammar-writing-tools/264584#264584 1 Answer by Martin v. Löwis for Grammar Writing Tools Martin v. Löwis 2008-11-05T08:04:34Z 2008-11-05T08:04:34Z <p>To check whether a grammar allows a certain parser algorithm, just put it into the parser generator. In case of LALR(1), pass the grammar to YACC to see whether it detects conflicts.</p> http://stackoverflow.com/questions/264262/grammar-writing-tools/264652#264652 0 Answer by Steven Dee for Grammar Writing Tools Steven Dee 2008-11-05T09:07:14Z 2008-11-05T09:07:14Z <p><a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> is a GUI parser generator in Java that has extensive capabilities for grammar analysis and factoring. Check the FAQ; it might support what you're looking for.</p> http://stackoverflow.com/questions/264262/grammar-writing-tools/271223#271223 1 Answer by joel.neely for Grammar Writing Tools joel.neely 2008-11-07T04:09:16Z 2008-11-07T04:09:16Z <p>Taking Steven Dee's suggestion one step further, you might want to check out <a href="http://www.antlr.org/works/index.html" rel="nofollow">ANTLRWorks</a>, which is an interactive GUI development tool for ANTLR grammars.</p> http://stackoverflow.com/questions/264262/grammar-writing-tools/321338#321338 1 Answer by Jeremy Rudd for Grammar Writing Tools Jeremy Rudd 2008-11-26T16:33:10Z 2008-11-26T16:33:10Z <p>Use <strong>TinyPG</strong>! Its an amazing all-in-one <strong>compiler compiler</strong> with a lightweight GUI, where you build your parser with <strong>RegEx</strong>, <strong>EBNF</strong>, and write <strong>C#/VB</strong> code to do something with the <strong>parse tree</strong>!</p> <p>Here's a short and informative summary that I did earlier, which also links you to the downloads.</p> <p><hr /></p> <p><strong><em>My understandings of TinyPG:</em></strong></p> <p><a href="http://www.codeproject.com/KB/recipes/TinyPG.aspx" rel="nofollow">TinyPG</a> allows you to write &amp; develop:</p> <ul> <li>Define <strong>Terminals</strong> using <a href="http://www.codeproject.com/KB/dotnet/regextutorial.aspx" rel="nofollow"><strong>Regular Expressions</strong>.</a></li> <li>Define <strong>Non-terminals</strong> and parser rules in <a href="http://en.wikipedia.org/wiki/EBNF" rel="nofollow"><strong>Extended BNF</strong> meta-syntax.</a></li> <li>Write <strong>Compiler</strong> code in <strong>C# or VB</strong>, within TinyPG.</li> </ul> <p>It has an in-built IDE, Windows Only <em>(created in C#.NET, open source)</em>.</p> <p>It allows you to try out &amp; preview <strong>Regular Expressions</strong> using the inbuilt <strong>RegEx tool.</strong> RegEx syntax is supported in .NET which means that even your <strong>outputted parser code</strong> uses .NET's Regular Expressions.</p> <p>You write EBNF to describe the <strong>language of your choice</strong> <em>(Here are some freely available <a href="http://www.devincook.com/GOLDParser/grammars/index.htm" rel="nofollow">BNF Grammers that describe modern programming languages</a> (C, Java, JavaScript, C#, VB.NET, SQL-89)</em></p> <p>Using TinyPG, your <strong>RegEx</strong> along with your <strong>EBNF</strong> outputs a <strong>parse-tree</strong> <a href="http://upload.wikimedia.org/wikipedia/en/a/a9/Parser_Flow.gif" rel="nofollow"><em>(see this diagram)</em></a>.</p> <p>Now what do you do with the parse-tree? You write <strong>C#/VB code</strong> <em>(within TinyPG, per BNF grammer rule)</em> for your <strong>Compiler/Interpreter/Translator.</strong> <em>(inside TinyPG, open the "simple expression2.tpg" file within the provided Samples to see a demo of a <strong>calculator</strong> 'compiler')</em></p> <p>TinyPG allows you to <strong>Compile and Test</strong> your <strong>tokenizer+parser+complier</strong>, within the TinyPG IDE, and it finally outputs the <strong>parser source code</strong> in C#.NET or VB.NET <em>(your choice)</em>, with <strong>ready-to-use</strong> classes.</p> <p>An excellent <strong>All-in-one Compiler Compiler</strong> for the masses. Enjoy!</p> <p><em>PS: Correct me if I'm wrong on any of this.</em></p> http://stackoverflow.com/questions/264262/grammar-writing-tools/321341#321341 -1 Answer by Jeremy Rudd for Grammar Writing Tools Jeremy Rudd 2008-11-26T16:34:58Z 2008-11-26T16:34:58Z <p><a href="http://www.codeproject.com/KB/recipes/TinyPG.aspx" rel="nofollow">TinyPG</a> also lets you <strong>quickly Compile (test) and debug</strong> your EBNF grammer and RegEx expressions.</p>