Ignore:
Timestamp:
Apr 17, 2020, 11:07:37 PM (5 years ago)
Author:
chronos
Message:
  • Added: Simple PHP code generator.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/interpreter2/UParser.pas

    r203 r204  
    605605  end;
    606606  with Block.Functions.AddNew('IntToStr') do begin
     607    InternalName := 'IntToStr';
    607608    Params.AddNew('Value', TypeInteger);
    608609    ResultType := TypeString;
    609610  end;
    610611  with Block.Functions.AddNew('StrToInt') do begin
     612    InternalName := 'StrToInt';
    611613    Params.AddNew('Value', TypeString);
    612614    ResultType := TypeInteger;
    613615  end;
    614616  with Block.Functions.AddNew('WriteLn') do begin
     617    InternalName := 'WriteLn';
    615618    Params.AddNew('Text', TypeString);
    616619  end;
    617620  with Block.Functions.AddNew('Write') do begin
     621    InternalName := 'Write';
    618622    Params.AddNew('Text', TypeString);
    619623  end;
Note: See TracChangeset for help on using the changeset viewer.