acorn-6to5
Advanced tools
Comparing version 0.11.1-20 to 0.11.1-21
@@ -5,3 +5,3 @@ { | ||
"main": "acorn_csp.js", | ||
"version": "0.11.1-20", | ||
"version": "0.11.1-21", | ||
"maintainers": [ | ||
@@ -8,0 +8,0 @@ { |
@@ -203,3 +203,3 @@ // AST walker module for Mozilla Parser API compatible trees | ||
}; | ||
base.ThrowStatement = base.SpreadElement = function(node, st, c) { | ||
base.ThrowStatement = base.SpreadElement = base.RestElement = function(node, st, c) { | ||
c(node.argument, st, "Expression"); | ||
@@ -253,3 +253,3 @@ }; | ||
base.ThisExpression = ignore; | ||
base.ArrayExpression = function(node, st, c) { | ||
base.ArrayExpression = base.ArrayPattern = function(node, st, c) { | ||
for (var i = 0; i < node.elements.length; ++i) { | ||
@@ -260,3 +260,3 @@ var elt = node.elements[i]; | ||
}; | ||
base.ObjectExpression = function(node, st, c) { | ||
base.ObjectExpression = base.ObjectPattern = function(node, st, c) { | ||
for (var i = 0; i < node.properties.length; ++i) | ||
@@ -273,3 +273,3 @@ c(node.properties[i], st); | ||
}; | ||
base.BinaryExpression = base.AssignmentExpression = base.LogicalExpression = function(node, st, c) { | ||
base.BinaryExpression = base.AssignmentExpression = base.AssignmentPattern = base.LogicalExpression = function(node, st, c) { | ||
c(node.left, st, "Expression"); | ||
@@ -276,0 +276,0 @@ c(node.right, st, "Expression"); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
327447
17
8809