aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/meta/target/jvm/type/descriptor.lux
blob: 9cf6d9de674267c222234f3dd32b7a6defa039b5 (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
... This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
... If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.

(.require
 [library
  [lux (.except)
   ["$" documentation]
   [data
    [text (.only \n)
     ["%" \\format (.only format)]]
    [collection
     ["[0]" list]]]]]
 [\\library
  ["[0]" /]])

(def .public documentation
  (List $.Documentation)
  (list ($.module /._
                  "")

        ($.definition /.Descriptor)
        ($.definition /.descriptor)
        ($.definition /.void)
        ($.definition /.boolean)
        ($.definition /.byte)
        ($.definition /.short)
        ($.definition /.int)
        ($.definition /.long)
        ($.definition /.float)
        ($.definition /.double)
        ($.definition /.char)
        ($.definition /.class_prefix)
        ($.definition /.class_suffix)
        ($.definition /.class)
        ($.definition /.declaration)
        ($.definition /.as_class)
        ($.definition /.var)
        ($.definition /.wildcard)
        ($.definition /.lower)
        ($.definition /.upper)
        ($.definition /.array_prefix)
        ($.definition /.array)
        ($.definition /.method)
        ($.definition /.equivalence)
        ($.definition /.class_name)
        ))