Fix linting error in new function

This commit is contained in:
Charles Pierce
2017-10-09 13:01:30 -07:00
parent 79f5d968a1
commit 8486c48237

View File

@@ -23156,7 +23156,8 @@ namespace ts {
return findAncestor(node, element => {
if (isConstructorDeclaration(element) && nodeIsPresent(element.body)) {
return true;
} else if (element === classDeclaration || isFunctionLikeDeclaration(element)) {
}
else if (element === classDeclaration || isFunctionLikeDeclaration(element)) {
return "quit";
}