Changeset 33 for trunk/Target/UTargetDelphi.pas
- Timestamp:
- Feb 18, 2012, 11:08:44 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Target/UTargetDelphi.pas
r32 r33 44 44 Result := 1; 45 45 if Optimization = coNormal then 46 while ((I + 1) <= Length(FSource )) and (FSource[I + 1] = C) do begin46 while ((I + 1) <= Length(FSourceCode)) and (FSourceCode[I + 1] = C) do begin 47 47 Inc(Result); 48 48 Inc(I) … … 52 52 begin 53 53 Indent := 0; 54 Output:= '';54 FTargetCode := ''; 55 55 56 56 AddLine('program ' + ProgramName + ';'); … … 66 66 AddLine('Pos := 0;'); 67 67 I := 1; 68 while (I <= Length(FSource )) do begin69 case FSource [I] of68 while (I <= Length(FSourceCode)) do begin 69 case FSourceCode[I] of 70 70 '>': begin 71 71 Sum := CheckOccurence('>');
Note:
See TracChangeset
for help on using the changeset viewer.