Search code examples
mysqlobjective-cgrammarbnf

Repository of BNF Grammars?


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.


Solution

  • you have to search on tools used to create grammars: "lex/yacc grammar", "antlr grammar" "railroad diagram"

    http://www.antlr3.org/grammar/list.html

    Here's some grammar files

    objective-c

    python

    javascript

    ruby