From e935ae44a765cee012d2445a6a5edc8ffbb9de76 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 11 Jan 2016 11:15:08 -0800 Subject: [PATCH] Temporarily remove Number.toCYON: way too verbose. --- libcycript.cy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libcycript.cy b/libcycript.cy index 8240a44..6b9e779 100644 --- a/libcycript.cy +++ b/libcycript.cy @@ -72,7 +72,8 @@ $cy_set(Error.prototype, { $cy_set(Number.prototype, { toCYON: function() { if ("$cyt" in this) - return `${this.$cyt.toCYON()}(${this.toString()})`; + //return `${this.$cyt.toCYON()}(${this.toString()})`; + return this.toString(); return `new Number(${this.toString()})`; }, }); -- 2.45.2