Open Object Rexx - Files
Interpreter Parser Source Files
This directory contains the ooRexx syntax parser. The code in this
directory is responsible for converting This code is responsible for
converting ooRexx programs into the exectuble format.
The following is a partial list of the files to be found in this subdirectory.
- SourceFile.*
- This is the main file for managing source translation. This handles
the general structure of the file and the directives. A lot of the
common parsing such as expression parsing is contained in here.
- InstructionParser.cpp*
- Code for parsing most of the ooRexx keyword instructions.
- KeywordConstants.cpp*
- Keyword tables identifying valid keyword tokens.
- Scanner.cpp*
- The lexical scanner that identifies the basic ooRexx token types.
- Clause.*
- A representation of an ooRexx clause, as a set of tokens.
- Token.*
- A representation of an ooRexx lexical token.