Grammar Writing Tools - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T08:08:30Zhttp://stackoverflow.com/feeds/question/264262http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/264262/grammar-writing-tools5Grammar Writing Toolscoppro2008-11-05T03:16:58Z2008-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#2645320Answer by Gamecat for Grammar Writing ToolsGamecat2008-11-05T07:10:46Z2008-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#2645841Answer by Martin v. Löwis for Grammar Writing ToolsMartin v. Löwis2008-11-05T08:04:34Z2008-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#2646520Answer by Steven Dee for Grammar Writing ToolsSteven Dee2008-11-05T09:07:14Z2008-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#2712231Answer by joel.neely for Grammar Writing Toolsjoel.neely2008-11-07T04:09:16Z2008-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#3213381Answer by Jeremy Rudd for Grammar Writing ToolsJeremy Rudd2008-11-26T16:33:10Z2008-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 & 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 & 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-1Answer by Jeremy Rudd for Grammar Writing ToolsJeremy Rudd2008-11-26T16:34:58Z2008-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>