diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-04-02 07:53:33 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-04-02 07:53:33 +0800 |
commit | bb3ae3026edec431c59299271f1af682e8dbb938 (patch) | |
tree | a0f7742d0ce31e5607d471a2d796b24dd993e0ca | |
parent | b8124ec79182dbf90b28c8527f2440cea6473f1b (diff) | |
download | dexon-bb3ae3026edec431c59299271f1af682e8dbb938.tar.gz dexon-bb3ae3026edec431c59299271f1af682e8dbb938.tar.zst dexon-bb3ae3026edec431c59299271f1af682e8dbb938.zip |
print nonenumerable properties of object in geth console
-rw-r--r-- | jsre/pp_js.go | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/jsre/pp_js.go b/jsre/pp_js.go index 3352f23ce..78509fc0b 100644 --- a/jsre/pp_js.go +++ b/jsre/pp_js.go @@ -23,18 +23,26 @@ function pp(object, indent) { } } str += " ]"; + } else if (object instanceof Error) { + str += "\033[31m" + "Error"; } else if(typeof(object) === "object") { str += "{\n"; - indent += " "; - var last = Object.keys(object).pop() - for(var k in object) { - str += indent + k + ": " + pp(object[k], indent); + indent += " "; + var last = Object.getOwnPropertyNames(object).pop() + Object.getOwnPropertyNames(object).forEach(function (k) { + str += indent + k + ": "; + try { + str += pp(object[k], indent); + } catch (e) { + str += pp(e, indent); + } if(k !== last) { str += ","; } - str += "\n"; - } + + str += "\n"; + }); str += indent.substr(2, indent.length) + "}"; } else if(typeof(object) === "string") { str += "\033[32m'" + object + "'"; @@ -43,7 +51,7 @@ function pp(object, indent) { } else if(typeof(object) === "number") { str += "\033[31m" + object; } else if(typeof(object) === "function") { - str += "\033[35m[Function]"; + str += "\033[35m[Function]"; } else { str += object; } |