From 733432604275a168895c8d9f00c591f2bd38ce9c Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Sat, 30 May 2015 22:37:18 -0400 Subject: [PATCH] remove extra semicolon --- src/babel/transformation/transformers/es6/destructuring.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/babel/transformation/transformers/es6/destructuring.js b/src/babel/transformation/transformers/es6/destructuring.js index 00f0f30218..a0d16b7b9b 100644 --- a/src/babel/transformation/transformers/es6/destructuring.js +++ b/src/babel/transformation/transformers/es6/destructuring.js @@ -121,7 +121,7 @@ export function AssignmentExpression(node, parent, scope, file) { var ref; if (this.isCompletionRecord() || !this.parentPath.isExpressionStatement()) { - ref = scope.generateUidIdentifierBasedOnNode(node.right, "ref");; + ref = scope.generateUidIdentifierBasedOnNode(node.right, "ref"); nodes.push(t.variableDeclaration("var", [ t.variableDeclarator(ref, node.right)