dialyzer
dialyzer
Module
dialyzer
Module summary
The Dialyzer, a DIscrepancy AnalYZer for ERlang programs
Description
The Dialyzer is a static analysis tool that identifies software discrepancies such as definite type errors, code which has become dead or unreachable due to some programming error, unnecessary tests, etc. in single Erlang modules or entire (sets of) applications. Dialyzer starts its analysis from either debug-compiled BEAM bytecode or from Erlang source code. The file and line number of a discrepancy is reported along with an indication of what the discrepancy is about. Dialyzer bases its analysis on the concept of success typings which allows for sound warnings (no false positives).
Read more about Dialyzer and about how to use it from the GUI in Dialyzer User's Guide
.