Skip to content

Commit 4465fe1

Browse files
committed
respond to code review comments
1 parent 804a3a5 commit 4465fe1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/compiler/emitter.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,9 @@ module ts {
617617
function serializeStringArray(list: string[]): string {
618618
var output = "";
619619
for (var i = 0, n = list.length; i < n; i++) {
620-
if (i) output += ",";
620+
if (i) {
621+
output += ",";
622+
}
621623
output += "\"" + escapeString(list[i]) + "\"";
622624
}
623625
return output;

0 commit comments

Comments
 (0)