tranleduy2000 / pascalnide

Pascal Compiler for Android
92 stars 25 forks source link

Intellisence doesn't show types and procedure or function parameters #72

Open EmilyGraceSeville7cf opened 2 months ago

EmilyGraceSeville7cf commented 2 months ago
program intellisence_test;
uses crt;

type // keyword type is not suggested anywhere 
  TSampleAlias = integer; // TSampleAlias is not suggested anywhere
  TSampleRecord = record // TSampleRecord is not suggested anywhere
    sample_field: integer;
  end;

const
  sample_constant = 1;

var
  sample_variable: integer;

procedure sample_procedure(sample_parameter: integer);
begin
  // sample_parameter is not suggested here
end;

function sample_function(sample_parameter: integer): integer;
begin
  // sample_parameter is not suggested here
end;

begin
  readln;
end.