aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/tool
diff options
context:
space:
mode:
authorEduardo Julian2019-07-08 00:08:01 -0400
committerEduardo Julian2019-07-08 00:08:01 -0400
commit4db84442d8d1932c330bea1ffdd6ff18447a47de (patch)
treee34fa4bbe42a457f3b3c6aee2924d223b070fbd8 /stdlib/source/lux/tool
parentd3deccdbd680e87723185f404e79dd10c2afceb6 (diff)
Added I32, I16 and I8.
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/tool/compiler/phase/generation/jvm/structure.lux4
1 files changed, 3 insertions, 1 deletions
diff --git a/stdlib/source/lux/tool/compiler/phase/generation/jvm/structure.lux b/stdlib/source/lux/tool/compiler/phase/generation/jvm/structure.lux
index 6c2dfc277..beeeea2c7 100644
--- a/stdlib/source/lux/tool/compiler/phase/generation/jvm/structure.lux
+++ b/stdlib/source/lux/tool/compiler/phase/generation/jvm/structure.lux
@@ -3,6 +3,8 @@
[abstract
["." monad (#+ do)]]
[data
+ [number
+ ["." i32]]
[collection
["." list]]]
[target
@@ -21,7 +23,7 @@
(def: unitG (Program Any) (//primitive.text /////synthesis.unit))
(template: (!integer <value>)
- (|> <value> .int _constant.i32 _constant.integer))
+ (|> <value> .i64 i32.i32 _constant.integer))
(def: #export (tuple generate membersS)
(Generator (Tuple Synthesis))