Fl4m3Ph03n1x

Fl4m3Ph03n1x OP

Background

I have a function that works with MapSets, and I have a set of values (static values) that I need to pass it.
So I have decided to put these values into an attribute, however dialzyer complains and I don’t get why.

Code

defmodule MyApp.Test do

  alias MyApp.MyDependency

  @data MapSet.new(["a", "b", "c"])

  def do_something_with_data(request), do: MyDependency.validate(request, @data)
end

This code gives me the following error:

lib/myapp/test.ex:5: The call ‘Elixir.MyApp.MyDependency’:validate(data@1::any(),#{‘struct’:=‘Elixir.MapSet’, ‘map’:=#{<<:56,:*32>>=>}, ‘version’:=2}) does not have an opaque term of type ‘Elixir.MapSet’:t(_) as 2nd argument

Which is rather confusing.

Why does this work?

I have battled with MapSets before, namely with this opaque value issue. So I tried to trick dialyzer and created the following code, which works:

defmodule MyApp.Test do

  alias MyApp.MyDependency

  @data ["a", "b", "c"]

  def do_something_with_data(request), do: MyDependency.validate(request,  MapSet.new(@data))
end

Questions

Why doesn’t the first example work? What am I missing?
Why does the second one work?
Does it have something to do with how the compiler parses the files?

First 3 of 3 Posts Switch mode

LostKobrakai

LostKobrakai

Dialyzer essentially sees this code:

MyDependency.validate(request, %MapSet{map: %{"a" => [], "b" => [], "c" => []}, version: 2})

While this is the same data, this is not like you’re supposed to create opaque types.

The reason for that is that a module attribute does just store plain data at compile time, injecting it everywhere it’s read. Dialyzer being an erlang tool has no idea there even are module attributes, so it cannot track the type from the compile time initialization to being injected, to being used at runtime.

Fl4m3Ph03n1x

Fl4m3Ph03n1x OP

How interesting!
So, is my workaround the only solution to this issue or would you recommend another one?

mindok

mindok

There’s a thread on disabling warnings here that may give you some hints…

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
michallepicki
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New

We're in Beta

About us Mission Statement