aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/tool.lux
blob: 347781dc60629677152f919d24da16d0b1a0002a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(.using
 [library
  [lux (.except char)
   ["$" documentation (.only documentation:)]
   [data
    [text (.only \n)
     ["%" \\format (.only format)]]
    [collection
     ["[0]" list]]]]]
 ["[0]" /
  [compiler
   ["[1][0]" phase]
   [language
    [lux
     ["[1][0]" analysis]
     ["[1][0]" directive]
     ["[1][0]" generation]
     ["[1][0]" synthesis]]]]])

(.def .public documentation
  (.List $.Module)
  (list.together
   (list /phase.documentation
         /analysis.documentation
         /directive.documentation
         /generation.documentation
         /synthesis.documentation
         )))