Skip to content

Commit be2a41c

Browse files
committed
remove empty lines
1 parent 908d619 commit be2a41c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/services/services.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3760,9 +3760,9 @@ module ts {
37603760

37613761
// Reset writer back to undefined to make sure that we produce an error message if CompilerHost.writeFile method is called when we are not in getEmitOutput
37623762
writer = undefined;
3763-
return emitOutput;
3764-
}
3765-
3763+
return emitOutput;
3764+
}
3765+
37663766
// Signature help
37673767
/**
37683768
* This is a semantic operation.
@@ -3796,7 +3796,7 @@ module ts {
37963796
var currentArguemntState = getSignatureHelpCurrentArgumentState(filename, position, signatureHelpItems.applicableSpan.start());
37973797

37983798
var formalSignatures: FormalSignatureItemInfo[] = [];
3799-
forEach(signatureHelpItems.items, signature=> {
3799+
forEach(signatureHelpItems.items, signature => {
38003800
var signatureInfoString = signature.prefix;
38013801

38023802
var paramters: FormalParameterInfo[] = [];
@@ -3807,6 +3807,7 @@ module ts {
38073807
if (i) {
38083808
signatureInfoString += signature.separator;
38093809
}
3810+
38103811
var start = signatureInfoString.length;
38113812
signatureInfoString += paramter.display;
38123813
var end = signatureInfoString.length - 1;
@@ -3819,7 +3820,6 @@ module ts {
38193820
minChar: start,
38203821
limChar: end
38213822
});
3822-
38233823
}
38243824

38253825
signatureInfoString += signature.suffix;

0 commit comments

Comments
 (0)