Changeset 229 for branches/xpascal/Executor.pas
- Timestamp:
- Jun 24, 2023, 11:23:26 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/xpascal/Executor.pas
r224 r229 632 632 if TValueBoolean(Value).Value then ExecuteCommand(Block, IfThenElse.CommandThen) 633 633 else begin 634 if not (IfThenElse.CommandElse is TCommand) then634 if Assigned(IfThenElse.CommandElse) then 635 635 ExecuteCommand(Block, IfThenElse.CommandElse); 636 636 end;
Note:
See TracChangeset
for help on using the changeset viewer.