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
Example:
defmodule Foo.Bar do end defmodule Baz.Foo do end defmodule Test do alias Foo.Bar alias Baz.Foo end
Organize aliases in module Test will swap the order of the aliases causing the alias Foo.Bar to alias the module Baz.Foo.Bar instead of Foo.Bar
Test
alias Foo.Bar
Baz.Foo.Bar
Foo.Bar
The text was updated successfully, but these errors were encountered:
This is from the elixir discord, and is pretty edge-casey, but real.
Sorry, something went wrong.
No branches or pull requests
Example:
Organize aliases in module
Test
will swap the order of the aliases causing thealias Foo.Bar
to alias the moduleBaz.Foo.Bar
instead ofFoo.Bar
The text was updated successfully, but these errors were encountered: