OLD | NEW |
---|---|
(Empty) | |
1 @vsn 2 | |
2 @moduledoc """ | |
3 foobar | |
4 """ | |
5 @tag :external | |
6 | |
7 ---------------------------------------------------- | |
8 | |
9 [ | |
10 ["attribute", "@vsn"], ["number", "2"], | |
11 ["attribute", "@moduledoc"], ["string", [ | |
12 "\"\"\"\r\nfoobar\r\n\"\"\"" | |
13 ]], | |
14 ["attribute", "@tag"], ["atom", ":external"] | |
15 ] | |
16 | |
17 ---------------------------------------------------- | |
18 | |
19 Checks for module attributes. | |
OLD | NEW |