blob: 8749b2ef28215daa1dad9a7bba21371fcd37bb85 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
(.using
[library
[lux "*"
[tool
[compiler
[language
[lux
["[0]" synthesis]
[phase
["[0]" extension]]]]]]]]
[luxc
[lang
[host
[jvm {"+" Phase}]]]]
[//
["[0]" primitive]
["[0]" structure]
["[0]" reference]
["[0]" case]
["[0]" loop]
["[0]" function]])
(def: .public (translate archive synthesis)
Phase
(case synthesis
(^ (synthesis.bit value))
(primitive.bit value)
(^ (synthesis.i64 value))
(primitive.i64 value)
(^ (synthesis.f64 value))
(primitive.f64 value)
(^ (synthesis.text value))
(primitive.text value)
(^ (synthesis.variant data))
(structure.variant translate archive data)
(^ (synthesis.tuple members))
(structure.tuple translate archive members)
(^ (synthesis.variable variable))
(reference.variable archive variable)
(^ (synthesis.constant constant))
(reference.constant archive constant)
(^ (synthesis.branch/exec it))
(case.exec translate archive it)
(^ (synthesis.branch/let data))
(case.let translate archive data)
(^ (synthesis.branch/if data))
(case.if translate archive data)
(^ (synthesis.branch/get data))
(case.get translate archive data)
(^ (synthesis.branch/case data))
(case.case translate archive data)
(^ (synthesis.loop/again data))
(loop.again translate archive data)
(^ (synthesis.loop/scope data))
(loop.scope translate archive data)
(^ (synthesis.function/apply data))
(function.call translate archive data)
(^ (synthesis.function/abstraction data))
(function.function translate archive data)
{synthesis.#Extension extension}
(extension.apply archive translate extension)))
|