aboutsummaryrefslogtreecommitdiff
path: root/luxc
diff options
context:
space:
mode:
authorEduardo Julian2018-07-11 22:21:23 -0400
committerEduardo Julian2018-07-11 22:21:23 -0400
commit81480739f4c5caa468b295eb047e5844d39701ca (patch)
treec0b95639cd9427f8ecf57220a38b413fb9845145 /luxc
parentf76922dfef6e88db854a27dc17987ccdc9736d6a (diff)
- Removed "lux text hash" extension.
Diffstat (limited to '')
-rw-r--r--luxc/src/lux/analyser/proc/common.clj2
-rw-r--r--luxc/src/lux/compiler/jvm/proc/common.clj2
2 files changed, 0 insertions, 4 deletions
diff --git a/luxc/src/lux/analyser/proc/common.clj b/luxc/src/lux/analyser/proc/common.clj
index 4d2f40277..359fcb314 100644
--- a/luxc/src/lux/analyser/proc/common.clj
+++ b/luxc/src/lux/analyser/proc/common.clj
@@ -84,7 +84,6 @@
(&/|list)))))))
^:private analyse-text-size "size"
- ^:private analyse-text-hash "hash"
)
(defn ^:private analyse-text-char [analyse exo-type ?values]
@@ -425,7 +424,6 @@
"lux text clip" (analyse-text-clip analyse exo-type ?values)
"lux text index" (analyse-text-index analyse exo-type ?values)
"lux text size" (analyse-text-size analyse exo-type ?values)
- "lux text hash" (analyse-text-hash analyse exo-type ?values)
"lux text char" (analyse-text-char analyse exo-type ?values)
"lux array new" (analyse-array-new analyse exo-type ?values)
diff --git a/luxc/src/lux/compiler/jvm/proc/common.clj b/luxc/src/lux/compiler/jvm/proc/common.clj
index 244e7baa8..3b490ebb6 100644
--- a/luxc/src/lux/compiler/jvm/proc/common.clj
+++ b/luxc/src/lux/compiler/jvm/proc/common.clj
@@ -405,7 +405,6 @@
(return nil)))
^:private compile-text-size "java/lang/String" "length"
- ^:private compile-text-hash "java/lang/Object" "hashCode"
)
(defn ^:private compile-text-char [compile ?values special-args]
@@ -626,7 +625,6 @@
"clip" (compile-text-clip compile ?values special-args)
"index" (compile-text-index compile ?values special-args)
"size" (compile-text-size compile ?values special-args)
- "hash" (compile-text-hash compile ?values special-args)
"char" (compile-text-char compile ?values special-args)
)