diff --git a/js/narcissus/jsexec.js b/js/narcissus/jsexec.js index 44193eca21ed..98ff537add07 100644 --- a/js/narcissus/jsexec.js +++ b/js/narcissus/jsexec.js @@ -499,7 +499,7 @@ function execute(n, x) { putValue(r, v, n[0]); break; - case CONDITIONAL: + case HOOK: v = getValue(execute(n[0], x)) ? getValue(execute(n[1], x)) : getValue(execute(n[2], x)); break; diff --git a/js/narcissus/jsparse.js b/js/narcissus/jsparse.js index 3b2f3fd4b2d8..7cccbac582c2 100644 --- a/js/narcissus/jsparse.js +++ b/js/narcissus/jsparse.js @@ -642,7 +642,7 @@ function ParenExpression(t, x) { var opPrecedence = { SEMICOLON: 0, COMMA: 1, - ASSIGN: 2, HOOK: 2, COLON: 2, CONDITIONAL: 2, + ASSIGN: 2, HOOK: 2, COLON: 2, // The above all have to have the same precedence, see bug 330975. OR: 4, AND: 5, @@ -668,7 +668,7 @@ for (i in opPrecedence) var opArity = { COMMA: -2, ASSIGN: 2, - CONDITIONAL: 3, + HOOK: 3, OR: 2, AND: 2, BITWISE_OR: 2, @@ -751,7 +751,6 @@ loop: n = operators.top(); if (n.type != HOOK) throw t.newSyntaxError("Invalid label"); - n.type = CONDITIONAL; --x.hookLevel; } else { operators.push(new Node(t));