aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux')
-rw-r--r--new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux16
1 files changed, 0 insertions, 16 deletions
diff --git a/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux b/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux
index 3dd5980e8..571835b79 100644
--- a/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux
@@ -333,21 +333,6 @@
@@array//get
@@array//put))
-(def: #export atom//field Text "_lux_atom")
-
-(runtime: (atom//compare-and-swap atom old new)
- (let [atom//field (python.string atom//field)]
- (python.if! (python.= old (python.nth atom//field atom))
- ($_ python.then!
- (python.set-nth! atom//field new atom)
- (python.return! (python.bool #1)))
- (python.return! (python.bool #0)))))
-
-(def: runtime//atom
- Runtime
- ($_ python.then!
- @@atom//compare-and-swap))
-
(runtime: (box//write value box)
($_ python.then!
(python.set-nth! (python.int 0) value box)
@@ -384,7 +369,6 @@
runtime//frac
runtime//text
runtime//array
- runtime//atom
runtime//box
runtime//io
runtime//process