We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
add_priv
add_local
a
b2
test_add2
sub()
Minimal code
module foo; import std::os; fn int add(int a, int b2){ assert(b2 != 7); return a + b2; } fn int add_priv(int a, int bbb) @private{ return a + bbb; } fn int add_local(int a, int ccc) @local{ return a + ccc; } fn void test_add2() @test { add(34, 4); assert(17 == add(2,3)); } <* This is doc, preventing *> fn int sub(int a, int b){ return a - b; }
Expected foo:: suggestions list should contain only add and sub functions.
foo::
add
sub
p.s. sub issue with docstring may also be related to #91
The text was updated successfully, but these errors were encountered:
Good suggestions, will review them
Sorry, something went wrong.
No branches or pull requests
Describe the bug
add_priv
/add_local
- appear in suggestionsa
/b2
are the function arguments and shouldn't be displayedtest_add2
is a @test method I think there is no value to suggest itsub()
is not shown because of doc string before it, when I remove it worksMinimal code
Expected
foo::
suggestions list should contain onlyadd
andsub
functions.p.s.
sub
issue with docstring may also be related to #91The text was updated successfully, but these errors were encountered: