dlebrun
Dialyzer error in Heex file after updating LiveView
After updating phoenix_live_view from version 0.19.3 to version 0.19.5, I get the following error when I run Dialyzer:
lib/my_app_web/live/books/create_or_edit.html.heex:1:no_return
The created anonymous function has no local return.
Here is the content of the file:
<.simple_form
:let={f}
id={"edit-book-#{@book.id}"}
for={@changeset}
phx-change="validate"
phx-submit="submit"
as="form"
>
<.input field={{f, :title}} label={gettext("Title")} />
<.input
field={{f, :language}}
type="select"
options={language_options()}
label={gettext("Language")}
/>
<fieldset class="flex flex-col gap-2">
<legend><%= gettext("EBook formats") %></legend>
<%= for ebook_form <- Phoenix.HTML.Form.inputs_for(f, :ebook_formats) do %>
<.ebook_line form={ebook_form} />
<% end %>
<.button class="mt-2" type="button" phx-click="add-ebook">
<Heroicons.document_plus class="w-6 h-6" />
</.button>
</fieldset>
<:actions>
<.button><%= gettext("Save") %></.button>
<.button phx-click="cancel"><%= gettext("Cancel") %></.button>
</:actions>
</.simple_form>
<%= if @live_action == :edit do %>
<div>
<.live_component
module={MyAppWeb.SearchTagComponent}
id="search_tag"
selected_tags={@selected_tags}
/>
</div>
<% end %>
I tried to remove the if section at the bottom, but the error still occurs.
Any idea what might be the problem?
Other information that might be relevant:
- Elixir 1.15.4 / Erlang 26.0.2
dialyxir1.3.0- Updating
phoenix_live_viewalso updated the following packages:json,phoenix,phoenix_html, andphoenix_template(all patch-level updates).
First Post!
sodapopcan
Hello and welcome to the forums ![]()
I’m far from a dialyzer but expert but since you’re getting no bites I thought I’d respond and can hopefully help you diagnose.
Errors in anonymous functions can be a bit of pain sometimes since the reported failing line number is that of the callsite of the function that calls the anonymous function. In this case, that function is simple_form/1 which happens to be on line 1. That’s why removing the if did nothing since it’s not called within simple_form/1.
I guess that’s probably not much more information than you’ve probably already tried now but hopefully somewhat helpful. I’m assuming the error is in the list comprehension (for) since that is the only place I can that there is for sure an anonymous function call.
Last Post!
dbaer
I ran into this too. After fiddling with clearing _build and various recompilations I managed to get Elixir to eek out the deprecation notice for inputs_for exactly once, and that pointed me in the right direction.
As an aside, It would be nice if compiler warnings were more consistent. Sometimes they show after an _build delete and recompile, sometimes they show up in production compile, sometimes in CI.
Popular in Questions
Other popular topics
Latest Phoenix Threads
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #elixirconf-us
- #advent-of-code
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #hex
- #security









