Add missing semicolon

This commit is contained in:
Anders Hejlsberg 2016-02-16 11:03:28 -08:00
parent bf89530e36
commit bd12f1b913

View File

@ -7200,7 +7200,7 @@ namespace ts {
function narrowType(type: Type, expr: Expression, assumeTrue: boolean): Type {
switch (expr.kind) {
case SyntaxKind.Identifier:
return narrowTypeByTruthiness(type, <Identifier>expr, assumeTrue)
return narrowTypeByTruthiness(type, <Identifier>expr, assumeTrue);
case SyntaxKind.CallExpression:
return narrowTypeByTypePredicate(type, <CallExpression>expr, assumeTrue);
case SyntaxKind.ParenthesizedExpression: