We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d514d4 commit 96d2570Copy full SHA for 96d2570
buble.js
@@ -7023,6 +7023,8 @@ var Identifier$1 = (function (Node$$1) {
7023
!(this.parent.type === 'Property' && this.parent.key === this && !this.parent.computed) &&
7024
// not a property of a MemberExpression
7025
!(this.parent.type === 'MemberExpression' && this.parent.property === this && !this.parent.computed) &&
7026
+ // not in an Array destructure pattern
7027
+ !(this.parent.type === 'ArrayPattern') &&
7028
// skip globals + commonly used shorthands
7029
!hash[this.name] &&
7030
// not already in scope
0 commit comments