9 Apr 2010 13:00
Dialyzer Documentation
Roberto Aloi <roberto.aloi <at> erlang-solutions.com>
2010-04-09 11:00:33 GMT
2010-04-09 11:00:33 GMT
Hi all, in: http://www.erlang.org/doc/man/dialyzer.html The correct analysis types should be: {analysis_type, 'succ_typings' | 'plt_add' | 'plt_build' | 'plt_check' | 'plt_remove'} rather than: {analysis_type, 'success_typings' | 'plt_add' | 'plt_build' | 'plt_check' | 'plt_remove'} as in the source code (dialyzer_options.erl): analysis_type -> NewOptions = case Value of succ_typings -> Options#options{analysis_type = Value}; plt_add -> Options#options{analysis_type = Value}; plt_build -> Options#options{analysis_type = Value}; plt_check -> Options#options{analysis_type = Value}; plt_remove -> Options#options{analysis_type = Value}; dataflow -> bad_option("Analysis type is no longer supported", Term); old_style -> bad_option("Analysis type is no longer supported", Term); Other -> bad_option("Unknown analysis type", Other)(Continue reading)
RSS Feed