Repository of BNF Grammars? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T05:11:54Z http://stackoverflow.com/feeds/question/334479 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/334479/repository-of-bnf-grammars 4 Repository of BNF Grammars? Greg 2008-12-02T16:06:04Z 2008-12-03T11:49:51Z <p>Is there a place I can find Backus–Naur Form or BNF grammars for popular languages? Whenever I do a search I don't turn up much, but I figure they must be published somewhere. I'm most interested in seeing one for Objective-C and maybe MySQL.</p> http://stackoverflow.com/questions/334479/repository-of-bnf-grammars/334498#334498 4 Answer by eed3si9n for Repository of BNF Grammars? eed3si9n 2008-12-02T16:11:52Z 2008-12-02T16:42:36Z <p>There are some links from <a href="http://en.wikipedia.org/wiki/Backus-Naur_form#Language_Grammers" rel="nofollow">w:BNF#Language Grammers</a>.</p> <ul> <li><a href="http://savage.net.au/SQL/index.html" rel="nofollow">BNF Grammars for SQL-92, SQL-99 and SQL-2003</a></li> </ul> <p>I also found a <a href="http://www.cocoadev.com/index.pl?TheMethodDefinitionAndTheSemicolon" rel="nofollow">page</a> that lists grammars for Objective C.</p> <ul> <li><a href="http://www.wodeveloper.com/omniLists/macosx-dev/2001/March/msg00807.html" rel="nofollow">Objective-C grammar for Lex/Yacc Flex/Bison</a></li> <li><a href="http://objc.toodarkpark.net/grammar.html" rel="nofollow">Reference Manual for the Objective-C Language</a></li> </ul> http://stackoverflow.com/questions/334479/repository-of-bnf-grammars/334522#334522 2 Answer by Bill Karwin for Repository of BNF Grammars? Bill Karwin 2008-12-02T16:17:28Z 2008-12-02T16:17:28Z <p>FWIW, the MySQL grammar file (<code>mysql-server/sql/sql_yacc.y</code>) is open source and browseable at launchpad.net (though it's a bit slow and I got an error when I tried to pull up the specific file).</p> <p>Also, a snapshot of the whole MySQL Server source is downloadable from <a href="http://dev.mysql.com/downloads/mysql/5.1.html#source" rel="nofollow">dev.mysql.com</a>.</p> http://stackoverflow.com/questions/334479/repository-of-bnf-grammars/334539#334539 6 Answer by Gene T for Repository of BNF Grammars? Gene T 2008-12-02T16:20:00Z 2008-12-02T16:27:42Z <p>you have to search on tools used to create grammars: "lex/yacc grammar", "antlr grammar" "railroad diagram"</p> <p><a href="http://www.antlr.org/grammar/list" rel="nofollow">http://www.antlr.org/grammar/list</a></p> <p>Here's some grammar files</p> <p><hr /></p> <p>objective-c</p> <p><a href="http://www.wodeveloper.com/omniLists/macosx-dev/2001/March/msg00807.html" rel="nofollow">http://www.wodeveloper.com/omniLists/macosx-dev/2001/March/msg00807.html</a></p> <p><a href="http://www.cilinder.be/docs/next/NeXTStep/3.3/nd/Concepts/ObjectiveC/B_Grammar/Grammar.htmld/index.html" rel="nofollow">http://www.cilinder.be/docs/next/NeXTStep/3.3/nd/Concepts/ObjectiveC/B_Grammar/Grammar.htmld/index.html</a></p> <p><hr /></p> <p>python</p> <p><a href="http://www.python.org/dev/summary/2006-04-16_2006-04-30/#the-grammar-file-and-syntaxerrors" rel="nofollow">http://www.python.org/dev/summary/2006-04-16_2006-04-30/#the-grammar-file-and-syntaxerrors</a></p> <p><hr /></p> <p>javascript</p> <p><a href="http://tomcopeland.blogs.com/EcmaScript.html" rel="nofollow">http://tomcopeland.blogs.com/EcmaScript.html</a></p> <p><a href="http://www.ccs.neu.edu/home/dherman/javascript/" rel="nofollow">http://www.ccs.neu.edu/home/dherman/javascript/</a></p> <p><hr /></p> <p>ruby </p> <p><a href="http://www.ruby-doc.org/docs/ruby-doc-bundle/Manual/man-1.4/yacc.html" rel="nofollow">http://www.ruby-doc.org/docs/ruby-doc-bundle/Manual/man-1.4/yacc.html</a></p> http://stackoverflow.com/questions/334479/repository-of-bnf-grammars/334623#334623 2 Answer by rmeador for Repository of BNF Grammars? rmeador 2008-12-02T16:39:48Z 2008-12-02T16:39:48Z <p>IIRC, BNF grammars are just different enough from what yacc/bison want as input to be really annoying :) If you intend to feed these files into a parser generator, you may want to look for files in the appropriate format. I recall seeing such files for Java, JavaScript and C++ at one point. Probably as part of Eclipse, Firefox and GCC, respectively, but I can't remember for sure. I would assume you can find pretty much any parser input file by finding an open source project that uses that language.</p>