My question:
How can I use these BNF grammers which are in GOLD meta-syntax (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?
I believe it should be pretty simple since TinyPG needs RegExp + EBNF in comparison to the GOLD grammers which are RegExp + BNF.
Is there any TinyPG source code for some example language (anything from C to JavaScript) available that I can look at just to see what sort of conversion would I have to do?
My understandings of TinyPG:
TinyPG allows you to write & develop:
It has an in-built IDE, Windows Only (created in C#.NET, open source).
It allows you to try out & preview Regular Expressions using the inbuilt RegEx tool. RegEx syntax is supported in .NET which means that even your outputted parser code uses .NET's Regular Expressions.
You write EBNF to describe the language of your choice (Here are some freely available BNF Grammers that describe modern programming languages (C, Java, JavaScript, C#, VB.NET, SQL-89)
Using TinyPG, your RegEx along with your EBNF outputs a parse-tree (see this diagram).
Now what do you do with the parse-tree? You write C#/VB code (within TinyPG, per BNF grammer rule) for your Compiler/Interpreter/Translator. (inside TinyPG, open the "simple expression2.tpg" file within the provided Samples to see a demo of a calculator 'compiler')
TinyPG allows you to Compile and Test your tokenizer+parser+complier, within the TinyPG IDE, and it finally outputs the parser source code in C#.NET or VB.NET (your choice), with ready-to-use classes.
An excellent All-in-one Compiler Compiler for the masses. Enjoy!
PS: Correct me if I'm wrong on any of this.