You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
program intellisence_test;
uses crt, non_existent;
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; // constant sample_constant is not suggested anywhere var
sample_variable: integer; // variable sample_variable is not suggested anywhere proceduresample_procedure(sample_parameter: integer);
begin// sample_parameter is not suggested anywhereend;
functionsample_function(sample_parameter: integer): integer;
begin// sample_parameter is not suggested anywhereend;
begin
readln;
end.
Just standard procedures and functions are shown in suggestions here due to using not existing module.
The text was updated successfully, but these errors were encountered:
EmilyGraceSeville7cf
changed the title
uses {{not existing module}} breaks intelligence in such a way no custom user procedures or functions are suggested uses {{not existing module}} breaks intellisence in such a way no custom user procedures or functions are suggested
Apr 19, 2024
EmilyGraceSeville7cf
changed the title
uses {{not existing module}} breaks intellisence in such a way no custom user procedures or functions are suggested uses {{not existing or custom user module}} breaks intellisence in such a way no custom user procedures or functions are suggested
Apr 19, 2024
Just standard procedures and functions are shown in suggestions here due to using not existing module.
The text was updated successfully, but these errors were encountered: