aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/tool.lux
blob: 4e3bad58637d0424270dfd1db69270a05f3c5c7d (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
(.using
 [library
  [lux "*"
   ["_" test {"+" Test}]]]
 ["[0]" / "_"
  [compiler
   ["[1][0]" arity]
   ["[1][0]" version]
   ["[1][0]" reference]
   [language
    [lux
     ... ["[1][0]" syntax]
     ["[1][0]" analysis "_"
      ["[1]/[0]" primitive]
      ["[1]/[0]" composite]]
     ... [phase
     ...  ["[1][0]" analysis]
     ...  ["[1][0]" synthesis]]
     ]]
   ]])

(def: .public test
  Test
  ($_ _.and
      /arity.test
      /version.test
      /reference.test
      /analysis/primitive.test
      /analysis/composite.test
      ... /syntax.test
      ... /analysis.test
      ... /synthesis.test
      ))