Use existing languages in BNF with TinyPG? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T04:26:45Zhttp://stackoverflow.com/feeds/question/321245http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/321245/use-existing-languages-in-bnf-with-tinypg2Use existing languages in BNF with TinyPG?Jeremy Rudd2008-11-26T16:09:14Z2009-11-06T02:12:01Z
<p>How can I use <a href="http://www.devincook.com/GOLDParser/grammars/index.htm" rel="nofollow">these BNF grammars</a> which are in <a href="http://www.devincook.com/GOLDParser/doc/meta-language/index.htm" rel="nofollow">GOLD meta-syntax</a> (RegExp + BNF) with TinyPG? I'm new to BNF so approximately what sort of conversion will I have to do to convert BNF to EBNF?</p>
<p>I believe it should be pretty simple since TinyPG needs RegExp + <strong>EBNF</strong> in comparison to the GOLD grammars which are RegExp + <strong>BNF</strong>.</p>
<p>Also, is there any TinyPG source code for any language available, just to see what sort of conversion I would have to do?</p>
http://stackoverflow.com/questions/321245/use-existing-languages-in-bnf-with-tinypg/1684989#16849891Answer by caving for Use existing languages in BNF with TinyPG?caving2009-11-06T02:12:01Z2009-11-06T02:12:01Z<p>EBNF is not <em>entirely</em> backwards compatible with BNF, however the differences are actually slight, you should be familiar with the document at</p>
<p><a href="http://www.cs.cmu.edu/~pattis/misc/ebnf.pdf" rel="nofollow">http://www.cs.cmu.edu/~pattis/misc/ebnf.pdf</a></p>
<p>Primarily you have to handle the special characters <>|:= (enclosed in double quotes).</p>
<p>You could just use the GOLD meta-syntax engine to output your parser if it can be in one of the supported languages - instead of using TinyPG...</p>
<p>It begs the question - What language will your parser be in when you are implementing it?</p>