blob: 72a27804d14f5540ed459abc5ecd369c8fbb978f (
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
81
|
(.module:
[lux #*
[abstract
[monad (#+ do)]]
[control
["." io (#+ IO)]
["." try (#+ Try)]]
[tool
[compiler
["." reference]
["." analysis]
["." synthesis (#+ Synthesis)]
["." directive]
["." phase
["." macro (#+ Expander)]
["." generation (#+ Operation)]
[extension (#+ Extender)
["." bundle]]]
[default
["." platform (#+ Platform)]]]]])
(type: .public Runner
(-> Text Synthesis (Try Any)))
(type: .public Definer
(-> Name Synthesis (Try Any)))
(type: .public (Instancer what)
(All (_ anchor expression directive)
(-> (Platform IO anchor expression directive)
(generation.State+ anchor expression directive)
what)))
(def: (runner (^slots [#platform.runtime #platform.phase #platform.host]) state)
(Instancer Runner)
(function (_ evaluation_name expressionS)
(do try.monad
[expressionG (<| (phase.result state)
generation.with_buffer
(do phase.monad
[_ runtime]
(phase expressionS)))]
(\ host evaluate! evaluation_name expressionG))))
(def: (definer (^slots [#platform.runtime #platform.phase #platform.host])
state)
(Instancer Definer)
(function (_ lux_name expressionS)
(do try.monad
[definitionG (<| (phase.result state)
generation.with_buffer
(do phase.monad
[_ runtime
expressionG (phase expressionS)
[host_name host_value host_directive] (generation.define! lux_name expressionG)
_ (generation.learn lux_name host_name)]
(phase (synthesis.constant lux_name))))]
(\ host evaluate! "definer" definitionG))))
(def: .public (executors target expander platform
analysis_bundle generation_bundle directive_bundle
program extender)
(All (_ anchor expression directive)
(-> Text Expander (Platform IO anchor expression directive)
analysis.Bundle
(generation.Bundle anchor expression directive)
(directive.Bundle anchor expression directive)
(-> expression directive) Extender
(IO (Try [(directive.State+ anchor expression directive)
Runner
Definer]))))
(do io.monad
[?state (platform.initialize target expander analysis_bundle platform generation_bundle directive_bundle program extender)]
(in (do try.monad
[[directive_bundle directive_state] ?state
.let [generation_state (value@ [#directive.generation
#directive.state]
directive_state)]]
(in [[directive_bundle directive_state]
(..runner platform generation_state)
(..definer platform generation_state)])))))
|