aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/meta/target/lua.lux
blob: 34bd530d34d84c577b21230775e76d6f75f33914 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
(.require
 [library
  [lux (.except)
   ["$" documentation]
   [data
    [text (.only \n)
     ["%" \\format (.only format)]]
    [collection
     ["[0]" list]]]]]
 [\\library
  ["[0]" /]])

(.def .public documentation
  (.List $.Module)
  ($.module /._
            ""
            [($.definition /.Code)
             ($.definition /.equivalence)
             ($.definition /.hash)
             ($.definition /.manual)
             ($.definition /.code)
             ($.definition /.Expression)
             ($.definition /.Computation)
             ($.definition /.Location)
             ($.definition /.Statement)
             ($.definition /.Literal)
             ($.definition /.Var)
             ($.definition /.Access)
             ($.definition /.Label)
             ($.definition /.nil)
             ($.definition /.boolean)
             ($.definition /.int)
             ($.definition /.float)
             ($.definition /.string)
             ($.definition /.multi)
             ($.definition /.array)
             ($.definition /.table)
             ($.definition /.item)
             ($.definition /.the)
             ($.definition /.length)
             ($.definition /.apply)
             ($.definition /.do)
             ($.definition /.=)
             ($.definition /.<)
             ($.definition /.<=)
             ($.definition /.>)
             ($.definition /.>=)
             ($.definition /.+)
             ($.definition /.-)
             ($.definition /.*)
             ($.definition /.^)
             ($.definition /./)
             ($.definition /.//)
             ($.definition /.%)
             ($.definition /.concat)
             ($.definition /.or)
             ($.definition /.and)
             ($.definition /.bit_or)
             ($.definition /.bit_and)
             ($.definition /.bit_xor)
             ($.definition /.bit_shl)
             ($.definition /.bit_shr)
             ($.definition /.not)
             ($.definition /.opposite)
             ($.definition /.var)
             ($.definition /.label)
             ($.definition /.statement)
             ($.definition /.then)
             ($.definition /.local)
             ($.definition /.set)
             ($.definition /.let)
             ($.definition /.local/1)
             ($.definition /.if)
             ($.definition /.when)
             ($.definition /.while)
             ($.definition /.repeat)
             ($.definition /.for_in)
             ($.definition /.for_step)
             ($.definition /.return)
             ($.definition /.closure)
             ($.definition /.function)
             ($.definition /.local_function)
             ($.definition /.break)
             ($.definition /.set_label)
             ($.definition /.go_to)
             ($.definition /.error/1)
             ($.definition /.print/1)
             ($.definition /.require/1)
             ($.definition /.type/1)
             ($.definition /.ipairs/1)
             ($.definition /.error/2)]
            []))