From b22ef22e3637ef6a4cba64f5fa0255104ff33a1d Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Wed, 28 Jan 2015 20:03:29 +1100 Subject: [PATCH] add missing semicolon --- lib/6to5/types/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/6to5/types/index.js b/lib/6to5/types/index.js index 8d56f4aa2d..a3bbd5e55f 100644 --- a/lib/6to5/types/index.js +++ b/lib/6to5/types/index.js @@ -269,7 +269,7 @@ t.isReferenced = function (node, parent) { } if (t.isCatchClause(parent)) { - return parent.param !== node + return parent.param !== node; } if (t.isVariableDeclarator(parent)) {