Ignore:
Timestamp:
Jun 24, 2023, 11:23:26 PM (17 months ago)
Author:
chronos
Message:
  • Added: Several basic interpretter tests.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/xpascal/Executor.pas

    r224 r229  
    632632    if TValueBoolean(Value).Value then ExecuteCommand(Block, IfThenElse.CommandThen)
    633633      else begin
    634         if not (IfThenElse.CommandElse is TCommand) then
     634        if Assigned(IfThenElse.CommandElse) then
    635635          ExecuteCommand(Block, IfThenElse.CommandElse);
    636636      end;
Note: See TracChangeset for help on using the changeset viewer.