aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/concurrency/atom.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/control/concurrency/atom.lux9
1 files changed, 6 insertions, 3 deletions
diff --git a/stdlib/source/lux/control/concurrency/atom.lux b/stdlib/source/lux/control/concurrency/atom.lux
index 5f3719ba8..3b57678fc 100644
--- a/stdlib/source/lux/control/concurrency/atom.lux
+++ b/stdlib/source/lux/control/concurrency/atom.lux
@@ -24,13 +24,16 @@
(as_is)))
(with_expansions [<new> (for {@.js "js array new"
- @.python "python array new"}
+ @.python "python array new"
+ @.lua "lua array new"}
(as_is))
<write> (for {@.js "js array write"
- @.python "python array write"}
+ @.python "python array write"
+ @.lua "lua array write"}
(as_is))
<read> (for {@.js "js array read"
- @.python "python array read"}
+ @.python "python array read"
+ @.lua "lua array read"}
(as_is))]
(abstract: #export (Atom a)
(with_expansions [<jvm> (java/util/concurrent/atomic/AtomicReference a)]