aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/meta/location.lux
blob: 3a46da914301ecbcd312f70f52373e3d002142bf (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
(.using
 [library
  [lux (.except private)
   ["$" documentation (.only documentation:)]
   [data
    ["[0]" text (.only \n)
     ["%" \\format (.only format)]]]
   [macro
    ["[0]" template]]]]
 [\\library
  ["[0]" /]])

(documentation: /.here
  "The Location of the current form."
  [(here)])

(documentation: /.with
  ""
  [(with location error)])

(.def .public documentation
  (.List $.Module)
  ($.module /._
            ""
            [..here
             ..with
             ($.default /.equivalence)
             ($.default /.dummy)
             ($.default /.format)]
            []))