Created by farhanhubble

LL parser

During October 2010 I wrote a small but functional LL parser generator and an LL parser. This collection contains files for both the parser as well as the parser-generator. The script AUTOMAKE.sh can be used to build the parser-generator and the parser. For a manual build consult AUTOMAKE.sh to see which files belong to the generator and which ones belong to the parser. File grammar.txt contains an LL grammar specification in a form that closely resembles YACC specifications. This file is input to the File input.txt contains the code that one wishes to parse. There are two readme files. One for the parser, another for the generator. File parsetable.txt stores the LL parsing table generated by the parser-generator at runtime. The parser loads this file at runtime, for parsing the input.