|
| 1 | +@doc "single" |
| 2 | +@doc 'single' |
| 3 | +@doc """triple""" |
| 4 | +@doc '''triple''' |
| 5 | +@doc ''' |
| 6 | +multiline |
| 7 | +''' |
| 8 | +@doc """ |
| 9 | +multiline |
| 10 | +""" |
| 11 | +@doc since: "1.3.0" |
| 12 | +@doc deprecated: "phased out" |
| 13 | + |
| 14 | +@moduledoc "single" |
| 15 | +@moduledoc 'single' |
| 16 | +@moduledoc """triple""" |
| 17 | +@moduledoc '''triple''' |
| 18 | +@moduledoc ''' |
| 19 | +multiline |
| 20 | +''' |
| 21 | +@moduledoc """ |
| 22 | +multiline |
| 23 | +""" |
| 24 | +@moduledoc since: "1.3.0" |
| 25 | +@moduledoc deprecated: "phased out" |
| 26 | + |
| 27 | +---------------------------------------------------- |
| 28 | + |
| 29 | +[ |
| 30 | + [ "doc", [ [ "attribute", "@doc" ], [ "string", "\"single\"" ] ] ], |
| 31 | + [ "doc", [ [ "attribute", "@doc" ], [ "string", "'single'" ] ] ], |
| 32 | + [ "doc", [ [ "attribute", "@doc" ], [ "string", "\"\"\"triple\"\"\"" ] ] ], |
| 33 | + [ "doc", [ [ "attribute", "@doc" ], [ "string", "'''triple'''" ] ] ], |
| 34 | + [ "doc", [ [ "attribute", "@doc" ], [ "string", "'''\nmultiline\n'''" ] ] ], |
| 35 | + [ "doc", [ [ "attribute", "@doc" ], [ "string", "\"\"\"\nmultiline\n\"\"\"" ] ] ], |
| 36 | + [ "attribute", "@doc" ], |
| 37 | + [ "attr-name", "since:" ], |
| 38 | + [ "string", [ "\"1.3.0\"" ] ], |
| 39 | + [ "attribute", "@doc" ], |
| 40 | + [ "attr-name", "deprecated:" ], |
| 41 | + [ "string", [ "\"phased out\"" ] ], |
| 42 | + [ "doc", [ [ "attribute", "@moduledoc" ], [ "string", "\"single\"" ] ] ], |
| 43 | + [ "doc", [ [ "attribute", "@moduledoc" ], [ "string", "'single'" ] ] ], |
| 44 | + [ "doc", [ [ "attribute", "@moduledoc" ], [ "string", "\"\"\"triple\"\"\"" ] ] ], |
| 45 | + [ "doc", [ [ "attribute", "@moduledoc" ], [ "string", "'''triple'''" ] ] ], |
| 46 | + [ "doc", [ [ "attribute", "@moduledoc" ], [ "string", "'''\nmultiline\n'''" ] ] ], |
| 47 | + [ "doc", [ [ "attribute", "@moduledoc" ], [ "string", "\"\"\"\nmultiline\n\"\"\"" ] ] ], |
| 48 | + [ "attribute", "@moduledoc" ], |
| 49 | + [ "attr-name", "since:" ], |
| 50 | + [ "string", [ "\"1.3.0\"" ] ], |
| 51 | + [ "attribute", "@moduledoc" ], |
| 52 | + [ "attr-name", "deprecated:" ], |
| 53 | + [ "string", [ "\"phased out\"" ] ] |
| 54 | +] |
| 55 | + |
| 56 | +---------------------------------------------------- |
0 commit comments