add missing semicolons

This commit is contained in:
Mohamed Hegazy 2014-08-04 15:07:42 -07:00
parent 3c0fd5324c
commit a48ec090ae
2 changed files with 5 additions and 3 deletions

View File

@ -6441,7 +6441,6 @@ module ts {
switch (node.kind) {
case SyntaxKind.Identifier:
return getSymbolOfIdentifier(<Identifier>node);
break;
case SyntaxKind.ThisKeyword:
case SyntaxKind.SuperKeyword:

View File

@ -1131,7 +1131,10 @@ module ts {
});
}
soruceFiles.sort((x, y) => y.refCount - x.refCount);
return { bucket: name, sourceFiles: soruceFiles }
return {
bucket: name,
sourceFiles: soruceFiles
};
});
return JSON.stringify(bucketInfoArray, null, 2);
}
@ -1907,7 +1910,7 @@ module ts {
return true;
}
return false
return false;
}
function tryAddConstructSignature(symbol: Symbol, location: Node, symbolKind: string, symbolName: string, containerName: string, result: DefinitionInfo[]) {