aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/debug.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/debug.lux')
-rw-r--r--stdlib/source/lux/debug.lux12
1 files changed, 8 insertions, 4 deletions
diff --git a/stdlib/source/lux/debug.lux b/stdlib/source/lux/debug.lux
index 2c6175601..2e353f44f 100644
--- a/stdlib/source/lux/debug.lux
+++ b/stdlib/source/lux/debug.lux
@@ -67,9 +67,11 @@
@.js
(as_is (import: JSON
- (#static stringify [.Any] ffi.String))
+ ["#::."
+ (#static stringify [.Any] ffi.String)])
(import: Array
- (#static isArray [.Any] ffi.Boolean)))
+ ["#::."
+ (#static isArray [.Any] ffi.Boolean)]))
@.python
(as_is (type: PyType
@@ -83,13 +85,15 @@
(import: (tostring [.Any] ffi.String))
(import: math
- (#static type [.Any] #? ffi.String)))
+ ["#::."
+ (#static type [.Any] #? ffi.String)]))
@.ruby
(as_is (import: Class)
(import: Object
- (type [] Class)))
+ ["#::."
+ (type [] Class)]))
@.php
(as_is (import: (gettype [.Any] ffi.String))