aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/js
diff options
context:
space:
mode:
authorEduardo Julian2018-02-24 17:10:44 -0400
committerEduardo Julian2018-02-24 17:10:44 -0400
commit9bf491a18e4b772505c3767cf0249eb24f0a822b (patch)
treece047676228e395f131abc7304a1284ebb1a69ed /new-luxc/source/luxc/lang/translation/js
parentcabb410d67edcdcb3531a990518ca67de4507f07 (diff)
- Removed the "root2" and "root3" host procedures (their functionality is redundant, in the presence of the "pow" procedure).
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/js')
-rw-r--r--new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux4
1 files changed, 0 insertions, 4 deletions
diff --git a/new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux b/new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux
index 49bf7fe27..14329e0dd 100644
--- a/new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux
@@ -380,8 +380,6 @@
[math//tanh "tanh"]
[math//exp "exp"]
[math//log "log"]
- [math//root2 "sqrt"]
- [math//root3 "cbrt"]
[math//ceil "ceil"]
[math//floor "floor"]
[math//round "round"]
@@ -602,8 +600,6 @@
(install "tanh" (unary math//tanh))
(install "exp" (unary math//exp))
(install "log" (unary math//log))
- (install "root2" (unary math//root2))
- (install "root3" (unary math//root3))
(install "ceil" (unary math//ceil))
(install "floor" (unary math//floor))
(install "round" (unary math//round))