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
In the following example, elixir_sense fails to resolve the Private module to which my_function is delegated.
Private
my_function
# lib/test.ex defmodule Test do alias __MODULE__, as: Self alias Self.Private defdelegate my_function(), to: Private end # lib/test/private.ex defmodule Test.Private do def my_function() do IO.puts("Hello") end end
The text was updated successfully, but these errors were encountered:
81d3c93
Thank you so much for addressing this 🙏 🍺
Sorry, something went wrong.
No branches or pull requests
In the following example, elixir_sense fails to resolve the
Private
module to whichmy_function
is delegated.The text was updated successfully, but these errors were encountered: