Changeset 234 for branches/xpascal/Parser.pas
- Timestamp:
- Jun 27, 2023, 12:50:09 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/xpascal/Parser.pas
r230 r234 201 201 ResultType := TypeBoolean; 202 202 end; 203 with Block. Functions.AddNew('WriteLn') do begin203 with Block.Procedures.AddNew('WriteLn') do begin 204 204 InternalName := 'WriteLn'; 205 205 Params.AddNew('Text', TypeString); 206 206 end; 207 with Block. Functions.AddNew('Write') do begin207 with Block.Procedures.AddNew('Write') do begin 208 208 InternalName := 'Write'; 209 209 Params.AddNew('Text', TypeString); 210 210 end; 211 with Block. Functions.AddNew('ReadLn') do begin211 with Block.Procedures.AddNew('ReadLn') do begin 212 212 InternalName := 'ReadLn'; 213 213 with Params.AddNew('Text', TypeString) do 214 214 Kind := pkVar; 215 215 end; 216 with Block. Functions.AddNew('Read') do begin216 with Block.Procedures.AddNew('Read') do begin 217 217 InternalName := 'Read'; 218 218 with Params.AddNew('Text', TypeString) do
Note:
See TracChangeset
for help on using the changeset viewer.