[Pkg-javascript-commits] [node-acorn-jsx] 135/484: parseMaybeUnary() doesn't need parameter @noIn
Bastien Roucariès
rouca at moszumanska.debian.org
Sat Aug 19 14:20:15 UTC 2017
This is an automated email from the git hooks/post-receive script.
rouca pushed a commit to branch master
in repository node-acorn-jsx.
commit 16b54e06982734553f5dbe2379237a87a10ececc
Author: Jiaxing Wang <hello.wjx at gmail.com>
Date: Wed Jul 10 19:02:12 2013 +0800
parseMaybeUnary() doesn't need parameter @noIn
---
acorn.js | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/acorn.js b/acorn.js
index 34b4932..1ca1cae 100644
--- a/acorn.js
+++ b/acorn.js
@@ -1443,7 +1443,7 @@
// Start the precedence parser.
function parseExprOps(noIn) {
- return parseExprOp(parseMaybeUnary(noIn), -1, noIn);
+ return parseExprOp(parseMaybeUnary(), -1, noIn);
}
// Parse binary operators with the operator precedence parsing
@@ -1460,7 +1460,7 @@
node.left = left;
node.operator = tokVal;
next();
- node.right = parseExprOp(parseMaybeUnary(noIn), prec, noIn);
+ node.right = parseExprOp(parseMaybeUnary(), prec, noIn);
var node = finishNode(node, /&&|\|\|/.test(node.operator) ? "LogicalExpression" : "BinaryExpression");
return parseExprOp(node, minPrec, noIn);
}
@@ -1470,13 +1470,13 @@
// Parse unary operators, both prefix and postfix.
- function parseMaybeUnary(noIn) {
+ function parseMaybeUnary() {
if (tokType.prefix) {
var node = startNode(), update = tokType.isUpdate;
node.operator = tokVal;
node.prefix = true;
next();
- node.argument = parseMaybeUnary(noIn);
+ node.argument = parseMaybeUnary();
if (update) checkLVal(node.argument);
else if (strict && node.operator === "delete" &&
node.argument.type === "Identifier")
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-acorn-jsx.git
More information about the Pkg-javascript-commits
mailing list