compiler: allow to hide parent function identifier inside them (by a nested function with the same name or by a local variable). Fixes mantis #0024129.

git-svn-id: trunk@25420 -
This commit is contained in:
paul 2013-09-05 01:10:04 +00:00
parent d25ae84113
commit 1b81afcd42
3 changed files with 36 additions and 0 deletions

1
.gitattributes vendored
View File

@ -13488,6 +13488,7 @@ tests/webtbs/tw2397.pp svneol=native#text/plain
tests/webtbs/tw24007.pp svneol=native#text/plain
tests/webtbs/tw24071.pp svneol=native#text/pascal
tests/webtbs/tw2409.pp svneol=native#text/plain
tests/webtbs/tw24129.pp svneol=native#text/pascal
tests/webtbs/tw24131.pp svneol=native#text/plain
tests/webtbs/tw24197.pp svneol=native#text/plain
tests/webtbs/tw2421.pp svneol=native#text/plain

View File

@ -907,6 +907,14 @@ implementation
HideSym(srsym);
searchagain:=true;
end
else
if (m_delphi in current_settings.modeswitches) and
(srsym.typ=absolutevarsym) and
([vo_is_funcret,vo_is_result]*tabstractvarsym(srsym).varoptions=[vo_is_funcret]) then
begin
HideSym(srsym);
searchagain:=true;
end
else
begin
{ we use a different error message for tp7 so it looks more compatible }

27
tests/webtbs/tw24129.pp Normal file
View File

@ -0,0 +1,27 @@
{%norun}
program tw24129;
{$mode delphi}
procedure Test;
function Next: integer;
function Next: integer;
function Next: integer;
var
Next: integer;
begin
end;
begin
end;
begin
end;
begin
end;
begin
end.