diff options
author | Eduardo Julian | 2019-05-29 23:34:17 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-05-29 23:34:17 -0400 |
commit | a85bfc405e7acaf86c61fcd8f7987da0200d7b03 (patch) | |
tree | 0bdcbef2e40814d9e5a828c9c8fcf83d233b2645 /stdlib/source/lux/host.old.lux | |
parent | 36d22e31ab696b2cf3382d77b0896dcb357dfb8c (diff) |
Various fixes and tweaks.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/host.old.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/host.old.lux b/stdlib/source/lux/host.old.lux index 5c2ac40d9..db8145ab2 100644 --- a/stdlib/source/lux/host.old.lux +++ b/stdlib/source/lux/host.old.lux @@ -1569,8 +1569,8 @@ (` (??? (~ return-term))) (let [g!temp (` ((~' ~') (~ (code.identifier ["" " Ω "]))))] (` (let [(~ g!temp) (~ return-term)] - (if (not (null? (:coerce (primitive "java.lang.Object") - (~ g!temp)))) + (if (not (..null? (:coerce (primitive "java.lang.Object") + (~ g!temp)))) (~ g!temp) (error! "Cannot produce null references from method calls.")))))) |