Address code review

This commit is contained in:
Yui T
2015-03-16 15:48:03 -07:00
parent 91c5bae6e5
commit c51983df3c
2 changed files with 1 additions and 5 deletions

View File

@@ -3189,9 +3189,7 @@ module ts {
}
else {
write("(");
if (node.arguments.length) {
emitCommaList(node.arguments);
}
emitCommaList(node.arguments);
write(")");
}
}

View File

@@ -686,7 +686,6 @@ module m3 { }\
});
it('Surrounding function declarations with block',() => {
debugger;
var source = "declare function F1() { } export function F2() { } declare export function F3() { }"
var oldText = ScriptSnapshot.fromString(source);
@@ -723,7 +722,6 @@ module m3 { }\
});
it('Moving methods from object literal to class in strict mode', () => {
debugger;
var source = "\"use strict\"; var v = { public A() { } public B() { } public C() { } }"
var oldText = ScriptSnapshot.fromString(source);