ghkweon / dwscript

Automatically exported from code.google.com/p/dwscript
0 stars 0 forks source link

TdwsSuggestions does not list local function/procedure parameters #420

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
----------------------------------
var mystring : string;

procedure xxx(mypar : integer);
var myvar : string;
begin
  {here}
end;

begin
  xxx(4);
end;
----------------------------------

Invoking the tdwsSuggestions inside the xxx procedure doesn't list the mypar 
and myvar identifiers. global variables such as mystring, as well as xxx is 
shown in the list, but local variables and parameters are missing.

Original issue reported on code.google.com by Fighting...@gmail.com on 15 Jun 2013 at 6:35