mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
14 lines
769 B
Diff
14 lines
769 B
Diff
diff --git a/node_modules/acorn-node/node_modules/acorn/dist/acorn.js b/node_modules/acorn-node/node_modules/acorn/dist/acorn.js
|
|
index 0523f0e..2bb9b56 100644
|
|
--- a/node_modules/acorn-node/node_modules/acorn/dist/acorn.js
|
|
+++ b/node_modules/acorn-node/node_modules/acorn/dist/acorn.js
|
|
@@ -1835,7 +1835,7 @@
|
|
if (checkClashes) {
|
|
if (has(checkClashes, expr.name))
|
|
{ this.raiseRecoverable(expr.start, "Argument name clash"); }
|
|
- checkClashes[expr.name] = true;
|
|
+ Object.defineProperty(checkClashes, expr.name, { value: true, writable: true, enumerable: true, configurable: true });
|
|
}
|
|
if (bindingType !== BIND_NONE && bindingType !== BIND_OUTSIDE) { this.declareName(expr.name, bindingType, expr.start); }
|
|
break
|