The Tower Bridge in Sacramento, California GOLD Parsing System
Screen Shots of the Builder Application
Main
Latest News
Getting Started
Screen Shots
Download
Documentation
Contributors
Contact
About GOLD
How It Works
FAQ
Why Use GOLD?
Comparison
Revision History
Freeware License
More ...
Articles
What is a Parser?
Backus-Naur Form
DFA Lexer
LALR Parsing
Glossary
Links
More ...


 
Builder Application Layout

The flow of the application is broken down into three distinct steps that progress from a grammar to the completed parse tables. The developer advances by clicking the "Next" button which is located on the bottom left side of the main window. This is similar to the interface commonly used by installation software and application "wizards".

Click for a full size image
LALR State Browser

Most errors that occur in grammars are found in the LALR State Table. When the system analyzes a grammar and computes the parser tables, often shift-reduce and reduce-reduce conflicts occur.  The LALR State Browser allows the developer to review the produced states - in particular the state that contains the error.

Click for a full size image
Interactive Testing

One of key features of the Builder Application is the Test Grammar  Window. After the grammar has been successfully compiled by the Builder, the developer can check how Deterministic Finite Automata and LALR algorithms will analyze any number of test cases.

Click for a full size image
Generate Skeleton Programs

To make it easy to get started, the GOLD Builder has an important feature called "Create a Skeleton Program". This tool uses "program templates" to create basic programs that can be get you started on implementing your interpreter or compiler. Each Engine Developer can create a template to use with their engine - making the bridge between designing a grammar and writing the program much, much smaller.

Click for a full size image
Webpage Wizard

The GOLD Builder can export the grammar and computed tables to a webpages, formatted text, and XML.

In the case of the webpage, it makes full use of cascading style sheets, which, in turn, makes changing the design easy. The Builder comes with a large number of pre-defined color schemes. You can, if you want, create your own and save them for later use.

Click for a full size image