From fab9d1dff69b247b5c56dbf9afa93995048a8a26 Mon Sep 17 00:00:00 2001 From: Richard Dodd Date: Fri, 11 Jan 2019 19:24:24 +0000 Subject: [PATCH] Resolve what to do with no_std. --- src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index c853e19a..fc35b0db 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -536,9 +536,7 @@ impl fmt::Debug for JsValue { #[cfg(not(feature = "std"))] impl fmt::Debug for JsValue { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - // TODO before merge - this is less info than before - is this OK? Can we do the above - // without using allocation (no_std)? - f.write_str("JsValue(..)") + f.write_str("JsValue") } }