File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -3189,9 +3189,7 @@ module ts {
3189
3189
}
3190
3190
else {
3191
3191
write ( "(" ) ;
3192
- if ( node . arguments . length ) {
3193
- emitCommaList ( node . arguments ) ;
3194
- }
3192
+ emitCommaList ( node . arguments ) ;
3195
3193
write ( ")" ) ;
3196
3194
}
3197
3195
}
Original file line number Diff line number Diff line change @@ -686,7 +686,6 @@ module m3 { }\
686
686
} ) ;
687
687
688
688
it ( 'Surrounding function declarations with block' , ( ) => {
689
- debugger ;
690
689
var source = "declare function F1() { } export function F2() { } declare export function F3() { }"
691
690
692
691
var oldText = ScriptSnapshot . fromString ( source ) ;
@@ -723,7 +722,6 @@ module m3 { }\
723
722
} ) ;
724
723
725
724
it ( 'Moving methods from object literal to class in strict mode' , ( ) => {
726
- debugger ;
727
725
var source = "\"use strict\"; var v = { public A() { } public B() { } public C() { } }"
728
726
729
727
var oldText = ScriptSnapshot . fromString ( source ) ;
You can’t perform that action at this time.
0 commit comments