Changeset 236 for branches/xpascal/Parser.pas
- Timestamp:
- Jun 29, 2023, 1:47:58 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/xpascal/Parser.pas
r234 r236 44 44 procedure TParser.InitSystemBlock(Block: TBlock); 45 45 var 46 I: Integer; 46 47 TypeBoolean: TType; 47 48 TypeString: TType; … … 219 220 Kind := pkVar; 220 221 end; 222 223 for I := 0 to Block.Functions.Count - 1 do 224 Block.Functions[I].InitVariables; 225 for I := 0 to Block.Procedures.Count - 1 do 226 Block.Procedures[I].InitVariables; 221 227 end; 222 228
Note:
See TracChangeset
for help on using the changeset viewer.