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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Currently when Language Server is asked for suggestions for Integer methods this way:
{"jsonrpc":"2.0","id":16,"method":"search/completion","params":{"file":{"rootId":"c9e6b9e9-9009-4c17-9a22-a876c2332836","segments":["src","Main.enso"]},"position":{"character":6,"line":4},"returnType":null,"selfType":"Builtins.Main.Integer","tags":null}}
We receive a single suggestion of method up_to. The other compatible methods (e.g. those of Number) should be returned as well.
up_to
Number
This is to answer the IDE bug report: https://github.com/enso-org/ide/issues/1140
The text was updated successfully, but these errors were encountered:
iamrecursion
Successfully merging a pull request may close this issue.
General Summary
Currently when Language Server is asked for suggestions for Integer methods this way:
We receive a single suggestion of method
up_to
. The other compatible methods (e.g. those ofNumber
) should be returned as well.Motivation
This is to answer the IDE bug report: https://github.com/enso-org/ide/issues/1140
The text was updated successfully, but these errors were encountered: