Add missing semicolon

This commit is contained in:
Anders Hejlsberg
2017-10-26 14:58:06 -07:00
parent 2669061693
commit fd0ac155b9

View File

@@ -10462,7 +10462,7 @@ namespace ts {
}
function createWideningContext(parent: WideningContext, propertyName: __String, siblings: Type[]): WideningContext {
return { parent, propertyName, siblings, resolvedPropertyNames: undefined }
return { parent, propertyName, siblings, resolvedPropertyNames: undefined };
}
function getSiblingsOfContext(context: WideningContext): Type[] {