1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 22:37:58 +01:00

Death to E4X and stuff.

This commit is contained in:
Kris Maglione
2012-12-17 18:56:36 -08:00
parent 0d179d78bc
commit 3f483de547
24 changed files with 112 additions and 517 deletions

View File

@@ -13,7 +13,7 @@ defineModule("javascript", {
require: ["util"]
});
lazyRequire("template", ["template", "template_"]);
lazyRequire("template", ["template"]);
let isPrototypeOf = Object.prototype.isPrototypeOf;
@@ -354,7 +354,7 @@ var JavaScript = Module("javascript", {
if (!compl) {
base.process[1] = function highlight(item, v)
template_.highlight(typeof v == "xml" ? new String(v.toXMLString()) : v, true, 200);
template.highlight(typeof v == "xml" ? new String(v.toXMLString()) : v, true, 200);
// Sort in a logical fashion for object keys:
// Numbers are sorted as numbers, rather than strings, and appear first.
@@ -490,7 +490,7 @@ var JavaScript = Module("javascript", {
if (callable(func)) {
let [, prefix, args] = /^(function .*?)\((.*?)\)/.exec(Function.prototype.toString.call(func));
let n = this._get(i).comma.length;
args = template_.map(Iterator(args.split(", ")),
args = template.map(Iterator(args.split(", ")),
function ([i, arg]) ["span", { highlight: i == n ? "Filter" : "" }, arg],
",\u00a0");
this.context.message = ["", prefix + "(", args, ")"];