add missing semicolon

This commit is contained in:
Sebastian McKenzie 2015-01-28 20:03:29 +11:00
parent 044ce45d98
commit b22ef22e36

View File

@ -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)) {