File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -609,7 +609,7 @@ export class MI2 extends EventEmitter implements IBackend {
609609 if ( name ) {
610610 ret . name = name ;
611611 }
612-
612+
613613 return ret ;
614614 } ) ;
615615 }
Original file line number Diff line number Diff line change 1- //
2- // PLEASE DO NOT MODIFY / DELETE UNLESS YOU KNOW WHAT YOU ARE DOING
1+ //
2+ // PLEASE DO NOT MODIFY / DELETE UNLESS YOU KNOW WHAT YOU ARE DOING
33//
44// This file is providing the test runner to use when running extension tests.
55// By default the test runner in use is Mocha based.
6- //
6+ //
77// You can provide your own test runner if you want to override it by exporting
88// a function run(testRoot: string, clb: (error:Error) => void) that the extension
99// host can call to run the tests. The test runner is expected to use console.log
Original file line number Diff line number Diff line change @@ -158,14 +158,14 @@ suite("MI Parse", () => {
158158 ]
159159 ]
160160 ] ;
161-
161+
162162 assert . equal ( MINode . valueOf ( obj [ 0 ] , "@frame.level" ) , "0" ) ;
163163 assert . equal ( MINode . valueOf ( obj [ 0 ] , "@frame.addr" ) , "0x0000000000435f70" ) ;
164164 assert . equal ( MINode . valueOf ( obj [ 0 ] , "@frame.func" ) , "D main" ) ;
165165 assert . equal ( MINode . valueOf ( obj [ 0 ] , "@frame.file" ) , "source/app.d" ) ;
166166 assert . equal ( MINode . valueOf ( obj [ 0 ] , "@frame.fullname" ) , "/path/to/source/app.d" ) ;
167167 assert . equal ( MINode . valueOf ( obj [ 0 ] , "@frame.line" ) , "5" ) ;
168-
168+
169169 assert . equal ( MINode . valueOf ( obj [ 1 ] , "@frame.level" ) , "1" ) ;
170170 assert . equal ( MINode . valueOf ( obj [ 1 ] , "@frame.addr" ) , "0x00000000004372d3" ) ;
171171 assert . equal ( MINode . valueOf ( obj [ 1 ] , "@frame.func" ) , "rt.dmain2._d_run_main()" ) ;
Original file line number Diff line number Diff line change 2424 "no-consecutive-blank-lines" : false ,
2525 "no-empty" : false ,
2626 "no-shadowed-variable" : false ,
27- "no-trailing-whitespace" : false ,
2827 "no-unnecessary-initializer" : false ,
2928 "object-literal-shorthand" : false ,
3029 "object-literal-sort-keys" : false ,
You can’t perform that action at this time.
0 commit comments