degory / ghul

compiler for the ghūl programming language
https://ghul.dev
GNU Affero General Public License v3.0
4 stars 0 forks source link

Used symbols not always offered as completion options #1115

Closed degory closed 8 months ago

degory commented 8 months ago

Sometimes symbols imported into the current namespace scope with use are not offered as completion options.

For example

use IO.Std.write_line;

entry() is
    write_line("hello");
si

Is valid and does compile and execture, but the language extension doesn't offer write_line() as a completion option within entry() in VSCode