aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/lua/primitive.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/lua/primitive.jvm.lux')
-rw-r--r--new-luxc/source/luxc/lang/translation/lua/primitive.jvm.lux34
1 files changed, 0 insertions, 34 deletions
diff --git a/new-luxc/source/luxc/lang/translation/lua/primitive.jvm.lux b/new-luxc/source/luxc/lang/translation/lua/primitive.jvm.lux
deleted file mode 100644
index 230498fcb..000000000
--- a/new-luxc/source/luxc/lang/translation/lua/primitive.jvm.lux
+++ /dev/null
@@ -1,34 +0,0 @@
-(.module:
- lux
- (lux (control pipe)
- (data [number]
- text/format)
- [macro "meta/" Monad<Meta>])
- (luxc (lang (host [lua #+ Lua Expression Statement]))))
-
-(def: #export translate-bit
- (-> Bit (Meta Expression))
- (|>> lua.bool meta/wrap))
-
-(def: #export translate-int
- (-> Int (Meta Expression))
- (|>> lua.int meta/wrap))
-
-(def: #export translate-frac
- (-> Frac (Meta Expression))
- (|>> (cond> [(f/= number.positive-infinity)]
- [(new> "math.huge")]
-
- [(f/= number.negative-infinity)]
- [(new> "(-1 * math.huge)")]
-
- [(f/= number.not-a-number)]
- [(new> "(0/0)")]
-
- ## else
- [%f])
- meta/wrap))
-
-(def: #export translate-text
- (-> Text (Meta Expression))
- (|>> %t meta/wrap))