Merge pull request #9129 from plantain-00/minor_fix_add_missing_return_clause

minor fix: add missing return clause
This commit is contained in:
Mohamed Hegazy
2016-06-13 10:21:17 -07:00
committed by GitHub

View File

@@ -830,6 +830,8 @@ namespace ts {
case SyntaxKind.ConstructorType:
return true;
}
return false;
}
export function introducesArgumentsExoticObject(node: Node) {