minor fix: add missing return clause

This commit is contained in:
york yao
2016-06-13 18:48:39 +08:00
parent 81d1ccfe87
commit 61534225e5

View File

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