Class Summary |
ErrorHandler |
The ErrorHandler implements the actions that have to be done when
an error occurs. |
FirstSet |
The FirstSet implements the FIRST-Sets of all non-terminals in the
grammar. |
FollowSet |
The FollowSet implements the FOLLOW-Sets of all non-terminals in the
grammar. |
IdentToken |
The IdentToken implements an identifier found in the source code.
|
MiniComp |
The MiniComp class is the executable part of the MiniCompiler, including
the main -method where the Scanner , the Parser and the
ErrorHandler are initialised and the source file is read.
|
NumberToken |
The NumberToken implements a number found in the source code.
|
Parser |
The Parser implements a top-down-parser for the PL0-language. |
Scanner |
The Scanner implements the actions necessary to extract the Token
out of the source code. |
SimpleToken |
The SimpleToken implements a keyword or an operation found in
the source code. |
Token |
The Token implements a sequence of characters and/or numbers the
Scanner can work with.
|