fix code styling

This commit is contained in:
vvakame 2015-05-06 01:00:17 +09:00
parent 880ccf0221
commit e342c95562

View File

@ -5372,7 +5372,8 @@ module ts {
let constructSignatures: Signature[];
if (rightType.flags & TypeFlags.Interface) {
constructSignatures = (<InterfaceTypeWithDeclaredMembers>rightType).declaredConstructSignatures;
} else if (rightType.flags & TypeFlags.Anonymous) {
}
else if (rightType.flags & TypeFlags.Anonymous) {
constructSignatures = (<ResolvedType>rightType).constructSignatures;
}