blob: b97e50419bca51c5441ac1e744b2432426178371 (
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
|
(.module:
[lux (#- i64)
[abstract
monad]
[data
[text
format]]
[target
[jvm
["$t" type]]]
[tool
[compiler
[phase ("operation@." monad)]]]]
[luxc
[lang
[host
["." jvm (#+ Inst Operation)
["_" inst]]]]])
(def: #export (bit value)
(-> Bit (Operation Inst))
(operation@wrap (_.GETSTATIC "java.lang.Boolean"
(if value "TRUE" "FALSE")
($t.class "java.lang.Boolean" (list)))))
(template [<name> <type> <load> <wrap>]
[(def: #export (<name> value)
(-> <type> (Operation Inst))
(let [loadI (|> value <load>)]
(operation@wrap (|>> loadI <wrap>))))]
[i64 (I64 Any) (<| _.long .int) (_.wrap #$t.Long)]
[f64 Frac _.double (_.wrap #$t.Double)]
[text Text _.string (<|)]
)
|