Skip to content
New issue

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

Optional callbacks emitting compilation warnings on Elixir v1.18 #14152

Closed
ulissesalmeida opened this issue Jan 7, 2025 · 3 comments
Closed

Comments

@ulissesalmeida
Copy link
Contributor

Elixir and Erlang/OTP versions

Erlang/OTP 27 [erts-15.2] [source] [64-bit] [smp:10:10] [ds:10:10:10] [async-threads:1] [jit]

Elixir 1.18.1 (compiled with Erlang/OTP 27)

Operating system

MacOs

Current behavior

If I did wrote a code like this:

if function_exported?(module, :my_fun, 0) do
  module.my_fun()
else
  :error
end

In Elixir v1.18 emits a compilation warning like this:

      warning: MyModule.my_fun/0 is undefined or private
      │
 56 │       module.my_fun()
      │                     ~
      │

Expected behavior

The MyModule.my_fun/0 indeed doesn't exist because it's an optional callback, so the function_exported?/3 would never return true, so the that line would never be called. I would say the warning shouldn't be triggered.

Is the warning expected anyway? Is there other ways to write a similar code without triggering the warning?

Thank you.

@josevalim
Copy link
Member

This only happens for now because you are probably explicitly setting the module somewhere, right? Something like:

module = MyModule

Or:

module = if condition?, do: MyModule, else: OtherModule

Right?

So in those cases, you can add:

@compile {:no_warn_undefined, {MyModule, :my_fun, 0}}

In the future, you will be able to annotate that something is a behaviour and if a function is optional or not, so the experience is streamlined. :)

@ulissesalmeida
Copy link
Contributor Author

@josevalim thank you! ❤️

@josevalim
Copy link
Member

Alright, I will go ahead and close this then, as dealing with this is part of #13881. Thanks!

@josevalim josevalim closed this as not planned Won't fix, can't repro, duplicate, stale Jan 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants