mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 12:51:30 -05:00
Address code review
This commit is contained in:
@@ -3189,9 +3189,7 @@ module ts {
|
||||
}
|
||||
else {
|
||||
write("(");
|
||||
if (node.arguments.length) {
|
||||
emitCommaList(node.arguments);
|
||||
}
|
||||
emitCommaList(node.arguments);
|
||||
write(")");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user