TdwsSuggestions does not list local function/procedure parameters

Issue #165 resolved
Former user created an issue
var myvariable: string;

procedure foo(const att: Boolean);
var 
  lcl: Boolean;
begin
  {here}
end;

Invoking the TdwsSuggestions inside the foo procedure doesn't list the "att" and "lcl" identifiers. Global variables such as "myvariable" is shown in the list, but local variables and parameters are missing.

Comments (1)

  1. Log in to comment