diff --git a/compiler/packages/fcl-passrc/src/pasresolver.pp b/compiler/packages/fcl-passrc/src/pasresolver.pp index 9e36c7c..a580fe3 100644 --- a/compiler/packages/fcl-passrc/src/pasresolver.pp +++ b/compiler/packages/fcl-passrc/src/pasresolver.pp @@ -5485,7 +5485,9 @@ begin if (Proc.Visibility=visStrictPrivate) or ((Proc.Visibility=visPrivate) and (Proc.GetModule<>Data^.Proc.GetModule)) then - // a private private is hidden by definition -> no hint + // a private method is hidden by definition -> no hint + else if (Proc.Visibility=visPublished) then + // a published can hide (used for overloading rtti) -> no hint else if (ProcScope.ImplProc<>nil) // not abstract, external and (not ProcHasImplElements(ProcScope.ImplProc)) then // hidden method has implementation, but no statements -> useless diff --git a/compiler/packages/pastojs/tests/tcmodules.pas b/compiler/packages/pastojs/tests/tcmodules.pas index f6733b7..02e31b6 100644 --- a/compiler/packages/pastojs/tests/tcmodules.pas +++ b/compiler/packages/pastojs/tests/tcmodules.pas @@ -811,6 +811,7 @@ type Procedure TestRTTI_DynArray; Procedure TestRTTI_ArrayNestedAnonymous; Procedure TestRTTI_PublishedMethodOverloadFail; + Procedure TestRTTI_PublishedMethodHideNoHint; Procedure TestRTTI_PublishedMethodExternalFail; Procedure TestRTTI_PublishedClassPropertyFail; Procedure TestRTTI_PublishedClassFieldFail; @@ -29450,6 +29451,59 @@ begin ConvertProgram; end; +procedure TTestModule.TestRTTI_PublishedMethodHideNoHint; +begin + WithTypeInfo:=true; + StartUnit(false); + Add([ + 'interface', + 'type', + ' TObject = class', + ' end;', + ' {$M+}', + ' TBird = class', + ' procedure Fly;', + ' end;', + ' {$M-}', + 'type', + ' TEagle = class(TBird)', + ' procedure Fly;', + ' end;', + 'implementation', + 'procedure TBird.Fly;', + 'begin', + 'end;', + 'procedure TEagle.Fly;', + 'begin', + 'end;', + '']); + ConvertUnit; + CheckSource('TestRTTI_PublishedMethodHideNoHint', + LinesToStr([ // statements + 'rtl.createClass(this, "TObject", null, function () {', + ' this.$init = function () {', + ' };', + ' this.$final = function () {', + ' };', + '});', + 'rtl.createClass(this, "TBird", this.TObject, function () {', + ' this.Fly = function () {', + ' };', + ' var $r = this.$rtti;', + ' $r.addMethod("Fly", 0, null);', + '});', + 'rtl.createClass(this, "TEagle", this.TBird, function () {', + ' this.Fly = function () {', + ' };', + ' var $r = this.$rtti;', + ' $r.addMethod("Fly", 0, null);', + '});', + '']), + LinesToStr([ // $mod.$main + ])); + CheckResolverUnexpectedHints(true); +end; + procedure TTestModule.TestRTTI_PublishedMethodExternalFail; begin WithTypeInfo:=true;