gpt4 book ai didi

erlang - 如何使用 erl_tidy 和 erl_lint?

转载 作者:行者123 更新时间:2023-12-02 08:21:36 25 4
gpt4 key购买 nike

我知道文档解释了这些工具,但我不明白其解释。有人可以提供一两个例子吗?

最佳答案

对于 erl_tidy,最简单的方法 - 也是最直接的方法(如果您始终在源目录中运行一个方法)就是直接从 Eshell 中使用它,如下所示

$ erl
1> m(erl_tidy).
% output snipped
2> erl_tidy:dir(). % recursively tidy the present directory and its children
% output snipped
3> erl_tidy:dir("", [{recursive, false}]). % just the present directory
reading module `./bad.erl'.
made backup of file `./bad.erl'.
writing to file `./bad.erl'.
4>

在本例中,bad.erl 来自

-module(bad).
-compile(export_all).

bad(0)->1;bad(1)->2;bad(N)->3.bad()->0.

收拾整齐

-module(bad).

-compile(export_all).

bad ( 0 ) -> 1 ; bad ( 1 ) -> 2 ; bad ( N ) -> 3 . bad ( ) -> 0 .

...好吧,这不是魔术师:-)

erl_tidy 也可以通过 erl 的参数调用,如

$ # unix prompt
$ erl -s erl_tidy dir
tidying directory `./wesnoth'.
tidying directory `./wesnoth/Vix'.
tidying directory `./wesnoth/Vix/utils'.
...
然而

erl_lint完全不同。要了解如何使用它,首先了解this string evaluation example中发生了什么。 erl_lint 旨在作用于 Erlang 源代码的中间表示,而不是作用于它的字符串。

关于erlang - 如何使用 erl_tidy 和 erl_lint?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6903903/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com