1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-30 08:55:45 +01:00

Death to E4X and stuff.

This commit is contained in:
Kris Maglione
2012-12-17 18:38:03 -08:00
parent ebc0edd5bb
commit 0d179d78bc
47 changed files with 105 additions and 108 deletions

View File

@@ -1,6 +1,6 @@
// Copyright (c) 2006-2008 by Martin Stubenschrott <stubenschrott@vimperator.org>
// Copyright (c) 2007-2011 by Doug Kearns <dougkearns@gmail.com>
// Copyright (c) 2008-2011 by Kris Maglione <maglione.k@gmail.com>
// Copyright (c) 2008-2012 Kris Maglione <maglione.k@gmail.com>
//
// This work is licensed for reuse under an MIT license. Details are
// given in the LICENSE.txt file included with this file.
@@ -1078,7 +1078,7 @@ var Util = Module("Util", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference]),
if (~["boolean", "number"].indexOf(typeof data) || data === null)
res.push(String(data));
else if (isinstance(data, ["String", _]))
res.push(String.quote(data));
res.push(JSON.stringify(String(data)));
else if (isArray(data)) {
if (data.length == 0)
res.push("[]");
@@ -1100,7 +1100,7 @@ var Util = Module("Util", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference]),
for (let [key, val] in Iterator(data)) {
if (i++)
res.push(",\n");
res.push(prefix, String.quote(key), ": ")
res.push(prefix, JSON.stringify(key), ": ")
rec(val, prefix, seen);
}
if (i > 0)