Changeset 204 for branches/interpreter2/UParser.pas
- Timestamp:
- Apr 17, 2020, 11:07:37 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/interpreter2/UParser.pas
r203 r204 605 605 end; 606 606 with Block.Functions.AddNew('IntToStr') do begin 607 InternalName := 'IntToStr'; 607 608 Params.AddNew('Value', TypeInteger); 608 609 ResultType := TypeString; 609 610 end; 610 611 with Block.Functions.AddNew('StrToInt') do begin 612 InternalName := 'StrToInt'; 611 613 Params.AddNew('Value', TypeString); 612 614 ResultType := TypeInteger; 613 615 end; 614 616 with Block.Functions.AddNew('WriteLn') do begin 617 InternalName := 'WriteLn'; 615 618 Params.AddNew('Text', TypeString); 616 619 end; 617 620 with Block.Functions.AddNew('Write') do begin 621 InternalName := 'Write'; 618 622 Params.AddNew('Text', TypeString); 619 623 end;
Note:
See TracChangeset
for help on using the changeset viewer.