aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/meta/compiler/phase.lux
blob: 9f9e72491509667681886d63f222ef0cd88b5fd6 (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
... 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 /.Operation)
        ($.definition /.monad)
        ($.definition /.Phase)
        ($.definition /.Wrapper)
        ($.definition /.result')
        ($.definition /.result)
        ($.definition /.state)
        ($.definition /.with)
        ($.definition /.sub)
        ($.definition /.failure)
        ($.definition /.except)
        ($.definition /.of_try)
        ($.definition /.assertion)
        ($.definition /.identity)
        ($.definition /.composite)
        ))