mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-04 20:59:39 +01:00
PascalScript: ppc, arm, add self to param list
git-svn-id: trunk@39478 -
This commit is contained in:
parent
fe1d227c76
commit
51a6157180
@ -209,6 +209,10 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
if assigned(_Self) then begin
|
||||||
|
addgen(dword(_Self));
|
||||||
|
end;
|
||||||
|
|
||||||
{ process all parameters }
|
{ process all parameters }
|
||||||
for i := 0 to Params.Count-1 do begin
|
for i := 0 to Params.Count-1 do begin
|
||||||
if Params[i] = nil
|
if Params[i] = nil
|
||||||
|
|||||||
@ -248,6 +248,10 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
if assigned(_Self) then begin
|
||||||
|
addgen(dword(_Self));
|
||||||
|
end;
|
||||||
|
|
||||||
{ process all parameters }
|
{ process all parameters }
|
||||||
for i := 0 to Params.Count-1 do begin
|
for i := 0 to Params.Count-1 do begin
|
||||||
if Params[i] = nil
|
if Params[i] = nil
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user