aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/test/tests.lux
blob: 586869c458372277252c72c3f185cc575d9a5312 (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
(.module:
  lux
  (lux (control monad)
       [io]
       (concurrency [promise])
       [cli #+ program:]
       [test])
  (test (luxc (lang ## (analysis ["_.A" primitive]
                    ##           ["_.A" structure]
                    ##           ["_.A" reference]
                    ##           ["_.A" case]
                    ##           ["_.A" function]
                    ##           ["_.A" type]
                    ##           (procedure ["_.A" common]
                    ##                      ["_.A" host]))
                    ## (synthesis ["_.S" primitive]
                    ##            ["_.S" structure]
                    ##            (case ["_.S" special])
                    ##            ["_.S" function]
                    ##            ["_.S" procedure]
                    ##            ["_.S" loop])
                    (translation ## ["_.T" primitive]
                                 ## ["_.T" structure]
                                 ## ["_.T" function]
                                 ## ["_.T" reference]
                                 ## ["_.T" case]
                                 ["_.T" common]
                                 ## ["_.T" jvm]
                                 ## ["_.T" js]
                                 ## ["_.T" lua]
                                 ## ["_.T" ruby]
                                 ## ["_.T" python]
                                 ## ["_.T" r]
                                 ## ["_.T" scheme]
                                 ## ["_.T" common-lisp]
                                 ## ["_.T" php]
                                 ))
              )))

(program: args
  (test.run))