Table
├── Command
│ └── Print [print]
├── Internal
│ └── PrintItem
│ ├── PrintDbl [printDbl]
│ ├── PrintInt [printInt]
│ └── PrintStr [printStr]
└── SpecialOperator
├── Semicolon [semicolon]
└── Comma [comma]
Friday, February 20, 2015
Table Class Hierarchy – PRINT Entries
The PRINT related table entries were put into the new table class hierarchy. The diagram below shows the table sub-class hierarchy for the PRINT table entries:
The Command class was already implemented for the table entries of commands that have not been implemented yet. The Internal class is for codes that are added to the program to support commands, but are not associated with tokens from the input. The SpecialOperator class are for special operator codes that do not contain arguments. The intermediate PrintItem class contains those items shared by each of the print data type entries like their recreate function.
The Command class was already implemented for the table entries of commands that have not been implemented yet. The Internal class is for codes that are added to the program to support commands, but are not associated with tokens from the input. The SpecialOperator class are for special operator codes that do not contain arguments. The intermediate PrintItem class contains those items shared by each of the print data type entries like their recreate function.
Subscribe to:
Posts (Atom)