Merge branch 'sliceiter' into 'main'

Adding for-in loop iteration over slices

See merge request freepascal.org/fpc/source!827
This commit is contained in:
Frederic Kehrein 2025-04-04 05:36:58 +00:00
commit 9424bbe95b
3 changed files with 61 additions and 4 deletions

View File

@ -666,8 +666,18 @@ implementation
end
else
begin
lowbound:=cinlinenode.create(in_low_x,false,ctemprefnode.create(arrayvar));
highbound:=cinlinenode.create(in_high_x,false,ctemprefnode.create(arrayvar));
{ Iterating throug slice }
if (expression.nodetype=vecn) and (tvecnode(expression).right.nodetype=rangen) then
begin
lowbound:=trangenode(tvecnode(expression).right).left.getcopy;
highbound:=trangenode(tvecnode(expression).right).right.getcopy;
expression:=tvecnode(expression).left.getcopy;
end
else
begin
lowbound:=cinlinenode.create(in_low_x,false,ctemprefnode.create(arrayvar));
highbound:=cinlinenode.create(in_high_x,false,ctemprefnode.create(arrayvar));
end;
end;
addstatement(loopstatement,arrayvar);
@ -683,8 +693,18 @@ implementation
end
else
begin
lowbound:=cinlinenode.create(in_low_x,false,expression.getcopy);
highbound:=cinlinenode.create(in_high_x,false,expression.getcopy);
{ Iterating throug slice }
if (expression.nodetype=vecn) and (tvecnode(expression).right.nodetype=rangen) then
begin
lowbound:=trangenode(tvecnode(expression).right).left.getcopy;
highbound:=trangenode(tvecnode(expression).right).right.getcopy;
expression:=tvecnode(expression).left.getcopy;
end
else
begin
lowbound:=cinlinenode.create(in_low_x,false,expression.getcopy);
highbound:=cinlinenode.create(in_high_x,false,expression.getcopy);
end;
end;
end;

18
tests/test/tslice1.pp Normal file
View File

@ -0,0 +1,18 @@
program Test;
{$Mode ObjFPC}{$H+}
function sumafter1(arr: Array of Integer): Integer;
var
i: Integer;
begin
Result:=0;
for i in arr[1..High(arr)] do
Result:=Result+i;
end;
begin
if sumafter1([1,2,3,4]) <> 2+3+4 then
Halt(1);
WriteLn('ok');
end.

19
tests/test/tslice2.pp Normal file
View File

@ -0,0 +1,19 @@
program Test;
{$Mode ObjFPC}{$H+}
type TIntArray = array of Integer;
function sumafter1(arr: TIntArray): Integer;
var
i: Integer;
begin
Result:=0;
for i in arr[1..High(arr)] do
Result:=Result+i;
end;
begin
if sumafter1([1,2,3,4]) <> 2+3+4 then
Halt(1);
WriteLn('ok');
end.