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
we can complete simple expressions, like
module.a.b:c()
but only when we know the type of each of the ids. We should be equally informative in these kinds of cases:
local a = { str = return_a_string() } a.str:m---
or the inline equivalent, like for example
("string"):m return_a_table().a assert(module.table).a
These are all built around guessing what the type of a Call or Invoke expression will be and then storing it.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
we can complete simple expressions, like
but only when we know the type of each of the ids. We should be equally informative in these kinds of cases:
or the inline equivalent, like for example
These are all built around guessing what the type of a Call or Invoke expression will be and then storing it.
The text was updated successfully, but these errors were encountered: