mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-06 02:33:53 -06:00
add missing semicolons
This commit is contained in:
parent
3c0fd5324c
commit
a48ec090ae
@ -6441,7 +6441,6 @@ module ts {
|
||||
switch (node.kind) {
|
||||
case SyntaxKind.Identifier:
|
||||
return getSymbolOfIdentifier(<Identifier>node);
|
||||
break;
|
||||
|
||||
case SyntaxKind.ThisKeyword:
|
||||
case SyntaxKind.SuperKeyword:
|
||||
|
||||
@ -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[]) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user