Changeset 75 for trunk/Compiler/Executor.pas
- Timestamp:
- Jun 4, 2024, 12:22:49 AM (5 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Compiler/Executor.pas
r74 r75 1 unit UExecutor; 2 3 {$mode Delphi}{$H+} 1 unit Executor; 4 2 5 3 interface … … 33 31 TExecutorClass = class of TExecutor; 34 32 33 35 34 implementation 36 35 … … 39 38 procedure TExecutor.SetRunState(AValue: TRunState); 40 39 begin 41 if FRunState =AValue then Exit;42 FRunState :=AValue;40 if FRunState = AValue then Exit; 41 FRunState := AValue; 43 42 end; 44 43
Note:
See TracChangeset
for help on using the changeset viewer.