aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/js/runtime.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/js/runtime.jvm.lux')
-rw-r--r--new-luxc/source/luxc/lang/translation/js/runtime.jvm.lux12
1 files changed, 0 insertions, 12 deletions
diff --git a/new-luxc/source/luxc/lang/translation/js/runtime.jvm.lux b/new-luxc/source/luxc/lang/translation/js/runtime.jvm.lux
index 21aa8f983..2104dbf81 100644
--- a/new-luxc/source/luxc/lang/translation/js/runtime.jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/js/runtime.jvm.lux
@@ -752,17 +752,6 @@
"}"))
"})"))
-(runtime: text//last-index "lastIndex"
- (format "(function " @ "(text,part,start) {"
- "var idx = text.lastIndexOf(part," int//to-number "(start));"
- (format (format "if(idx === -1) {"
- "return " none ";"
- "}")
- (format "else {"
- (format "return " (some (format int//from-number "(idx)")) ";")
- "}"))
- "})"))
-
(runtime: text//clip "clip"
(format "(function " @ "(text,from,to) {"
(format "if(from.L > text.length || to.L > text.length) {"
@@ -802,7 +791,6 @@
(def: runtime//text
Runtime
(format __text//index
- __text//last-index
__text//clip
__text//replace-all
__text//char