aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/ffi.js.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-11-29 18:48:42 -0400
committerEduardo Julian2022-11-29 18:48:42 -0400
commitc7f67a85f980db2dab2e2d7df4168af83e9013a8 (patch)
tree4bd1dc93b333066840b7a3a0704486005a0607b7 /stdlib/source/test/lux/ffi.js.lux
parent8059ba6c421d3094fba336ac5d3dd39fe984b05e (diff)
Added money-handling machinery.
Diffstat (limited to 'stdlib/source/test/lux/ffi.js.lux')
-rw-r--r--stdlib/source/test/lux/ffi.js.lux18
1 files changed, 9 insertions, 9 deletions
diff --git a/stdlib/source/test/lux/ffi.js.lux b/stdlib/source/test/lux/ffi.js.lux
index 2a5748483..ba09925f2 100644
--- a/stdlib/source/test/lux/ffi.js.lux
+++ b/stdlib/source/test/lux/ffi.js.lux
@@ -101,13 +101,13 @@
(not (/.null? (|>>)))))
(_.coverage [/.global]
(|> (/.global /.Function [parseFloat])
- "js object null?"
+ .js_object_null?#
not))
(_.coverage [/.function]
(|> (/.function (_ [input/0 Nat])
Int
(.int input/0))
- "js object null?"
+ .js_object_null?#
not))
(_.coverage [/.on_browser? /.on_node_js? /.on_nashorn?]
(and (or /.on_nashorn?
@@ -157,13 +157,13 @@
"my_function" function
"my_object" object
"my_undefined" (/.undefined))]
- (and (same? boolean ("js object get" "my_boolean" it))
- (same? number ("js object get" "my_number" it))
- (same? string ("js object get" "my_string" it))
- (same? function ("js object get" "my_function" it))
- (same? object ("js object get" "my_object" it))
- (same? (/.undefined) ("js object get" "my_undefined" it))
- (/.undefined? ("js object get" "my_yolo" it)))))
+ (and (same? boolean (.js_object_get# "my_boolean" it))
+ (same? number (.js_object_get# "my_number" it))
+ (same? string (.js_object_get# "my_string" it))
+ (same? function (.js_object_get# "my_function" it))
+ (same? object (.js_object_get# "my_object" it))
+ (same? (/.undefined) (.js_object_get# "my_undefined" it))
+ (/.undefined? (.js_object_get# "my_yolo" it)))))
$/export.test
$/node_js.test