Added missing semicolon.

This commit is contained in:
Daniel Rosenwasser
2016-01-13 23:19:49 -08:00
parent 4502213993
commit 6e0fde37f8

View File

@@ -5096,7 +5096,7 @@ namespace ts {
return result !== Ternary.False;
function reportError(message: DiagnosticMessage, arg0?: string, arg1?: string, arg2?: string): void {
Debug.assert(!!errorNode)
Debug.assert(!!errorNode);
errorInfo = chainDiagnosticMessages(errorInfo, message, arg0, arg1, arg2);
}