You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't seem to find a way to pass the following Dialyzer options to it and recover their output (i.e. even if they're being passed from e.g. mix dialyzer --statistics ... I'm not getting the output):
--statistics
--verbose
--get_warnings
Expected behavior
I'd like to understand if passing those options is possible in the current version (as I may be doing something wrong) and, if it's not, if it would be desired. This issue would serve as a reference for the desire, which I could also pull request for, if/when time allows.
The text was updated successfully, but these errors were encountered:
Hi, yes those are unsupported. I do not know how they work or where they are implemented in dialyzer, but it may be important to know that we are not invoking the dialyzer CLI tool, we're using the API. So we can't just pass through inputs and outputs, we'd have to implement those in the API and do something appropriate with the output it generates.
Thanks for your feedback. Yeah, I noticed (looking at the mix task) you weren't using the CLI tool; I just didn't remember to check if those we're part of the API, though, sorry!
Shall we keep this open, while I create an equivalent to this for Erlang/OTP: Dialyzer?
Precheck
Searched issues, and README, for:
statistics
,verbose
, andget_warnings
Locally using:
dialyxir
1.2.0, anderlex
0.2.6 (though not explicitly depending on it)Environment
elixir --version
):cat mix.lock | grep dialyxir
):"dialyxir": {:hex, :dialyxir, "1.2.0", "58344b3e87c2e7095304c81a9ae65cb68b613e28340690dfe1a5597fd08dec37", [:mix], [{:erlex, ">= 0.2.6", [hex: :erlex, repo: "hexpm", optional: false]}], "hexpm", "61072136427a851674cab81762be4dbeae7679f85b1272b6d25c3a839aff8463"},
Current behavior
I can't seem to find a way to pass the following Dialyzer options to it and recover their output (i.e. even if they're being passed from e.g.
mix dialyzer --statistics ...
I'm not getting the output):--statistics
--verbose
--get_warnings
Expected behavior
I'd like to understand if passing those options is possible in the current version (as I may be doing something wrong) and, if it's not, if it would be desired. This issue would serve as a reference for the desire, which I could also pull request for, if/when time allows.
The text was updated successfully, but these errors were encountered: