* take care of m_duplicate_names when checking for duplicate locals, resolves #33221

git-svn-id: trunk@44028 -
This commit is contained in:
florian 2020-01-23 21:32:09 +00:00
parent 7b4292c94e
commit d87a5cc9fb
3 changed files with 32 additions and 1 deletions

1
.gitattributes vendored
View File

@ -17801,6 +17801,7 @@ tests/webtbs/tw33167.pp svneol=native#text/pascal
tests/webtbs/tw3320.pp svneol=native#text/plain
tests/webtbs/tw33202.pp svneol=native#text/pascal
tests/webtbs/tw33205.pp -text svneol=native#text/plain
tests/webtbs/tw33221.pp svneol=native#text/pascal
tests/webtbs/tw33222.pp svneol=native#text/pascal
tests/webtbs/tw33230.pp svneol=native#text/pascal
tests/webtbs/tw3324.pp svneol=native#text/plain

View File

@ -2460,7 +2460,7 @@ implementation
assigned(tprocdef(defowner).struct) and
(tprocdef(defowner).owner.defowner=tprocdef(defowner).struct) and
(
not(m_delphi in current_settings.modeswitches) or
not(m_duplicate_names in current_settings.modeswitches) or
is_object(tprocdef(defowner).struct)
) then
result:=tprocdef(defowner).struct.symtable.checkduplicate(hashedid,sym);

30
tests/webtbs/tw33221.pp Normal file
View File

@ -0,0 +1,30 @@
program Project1;
{$mode objfpc}{$H+}
{$ModeSwitch duplicatelocals}
type
TClass1 = class(TObject)
public
X: Integer;
procedure Proc1(X: Integer);
procedure Proc2;
end;
// Parameter has same name as member field.
// This is okay with duplicatelocals
procedure TClass1.Proc1(X: Integer);
begin
end;
// Local variable has same name as member field.
// Unlike with delphi mode, this is compiler error, even with duplicatelocals!
procedure TClass1.Proc2;
var
X: Integer;
begin
end;
begin
end.