blob: 144e35f9b352320b037f0407c94c890169afa975 (
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
|
(.module:
[lux #*
[tool
[compiler
[language
[lux
["." synthesis]
[phase
["." extension]]]]]]]
[luxc
[lang
[host
[jvm (#+ Phase)]]]]
[//
["." common]
["." primitive]
["." structure]
["." reference]
["." case]
["." loop]
["." function]])
(def: #export (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/let data))
(case.let translate archive data)
(^ (synthesis.branch/if data))
(case.if translate archive data)
(^ (synthesis.branch/case data))
(case.case translate archive data)
(^ (synthesis.loop/recur data))
(loop.recur 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)))
|