autocomplete in class helper do not suggests all possible methods/properties

Issue #31 resolved
Sorien created an issue
unit test;

interface

type
    TFoo = class
     public
        function Faa(): Boolean;
    end;

    TFooHelper = class helper for TFoo
    public
        function Test(): Boolean;
    end;

implementation

{ IFoo }

function TFoo.Faa(): Boolean;
begin

end;

{ TFooHelper }

function TFooHelper.Test(): Boolean;
begin
  Self.<carret> // shows only Test but it should suggest methods from TFoo class too
end;

end.

Comments (1)

  1. Log in to comment