Changeset 101 for branches/interpreter/Source3.pas
- Timestamp:
- Feb 11, 2017, 4:35:08 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/interpreter/Source3.pas
r100 r101 17 17 TOperator = (opNone, opAdd, opSubtract, opAnd, opOr, opNot, opEqual, opNotEqual); 18 18 19 TBaseType = (bt Boolean, btInteger, btChar, btShortString, btArray);19 TBaseType = (btNone, btBoolean, btInteger, btChar, btShortString, btArray); 20 20 21 21 TType = record … … 84 84 TFunctionCall = procedure ; 85 85 86 TCmdType = (ct WhileDo, ctIfThenElse, ctBeginEnd, ctAssignment, ctExecution);86 TCmdType = (ctNone, ctWhileDo, ctIfThenElse, ctBeginEnd, ctAssignment, ctExecution); 87 87 TCommand = record 88 88 CmdType: TCmdType;
Note:
See TracChangeset
for help on using the changeset viewer.