blob: 9b3f398f4fb6448b8684c265a0b4bded9a9d8ba0 (
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
79
80
|
(.require
[lux (.except)
[abstract
[monad (.only do)]]
[control
["[0]" io (.only IO)]
["[0]" try (.only Try)]]
[meta
[compiler
["[0]" reference]
["[0]" analysis]
["[0]" synthesis (.only Synthesis)]
["[0]" declaration]
["[0]" phase
["[0]" macro (.only Expander)]
["[0]" translation (.only Operation)]
[extension (.only Extender)
["[0]" bundle]]]
[default
["[0]" platform (.only Platform)]]]]])
(type .public Runner
(-> Text Synthesis (Try Any)))
(type .public Definer
(-> Symbol Synthesis (Try Any)))
(type .public (Instancer what)
(All (_ anchor expression declaration)
(-> (Platform IO anchor expression declaration)
(translation.State anchor expression declaration)
what)))
(def (runner (open "[0]") state)
(Instancer Runner)
(function (_ evaluation_name expressionS)
(do try.monad
[expressionG (<| (phase.result state)
translation.with_buffer
(do phase.monad
[_ runtime]
(phase expressionS)))]
(at host evaluate! evaluation_name expressionG))))
(def (definer (open "[0]") state)
(Instancer Definer)
(function (_ lux_name expressionS)
(do try.monad
[definitionG (<| (phase.result state)
translation.with_buffer
(do phase.monad
[_ runtime
expressionG (phase expressionS)
[host_name host_value host_declaration] (translation.define! lux_name expressionG)
_ (translation.learn lux_name host_name)]
(phase (synthesis.constant lux_name))))]
(at host evaluate! "definer" definitionG))))
(def .public (executors target expander platform
analysis_bundle translation_bundle declaration_bundle
program extender)
(All (_ anchor expression declaration)
(-> Text Expander (Platform IO anchor expression declaration)
analysis.Bundle
(translation.Bundle anchor expression declaration)
(declaration.Bundle anchor expression declaration)
(-> expression declaration) Extender
(IO (Try [(declaration.State anchor expression declaration)
Runner
Definer]))))
(do io.monad
[?state (platform.initialize target expander analysis_bundle platform translation_bundle declaration_bundle program extender)]
(in (do try.monad
[[declaration_bundle declaration_state] ?state
.let [translation_state (the [declaration.#translation
declaration.#state]
declaration_state)]]
(in [[declaration_bundle declaration_state]
(..runner platform translation_state)
(..definer platform translation_state)])))))
|