File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ import semver = require("semver");
12
12
import temp = require( "temp" ) ;
13
13
import byline = require( "byline" ) ;
14
14
15
-
16
15
module notification {
17
16
function formatNotification ( bundleId : string , notification : string ) {
18
17
return `${ bundleId } :NativeScript.Debug.${ notification } ` ;
@@ -125,15 +124,15 @@ class IOSDebugService implements IDebugService {
125
124
126
125
lineStream . on ( 'data' , ( line : NodeBuffer ) => {
127
126
let lineText = line . toString ( ) ;
128
- if ( lineText && _ . startsWith ( lineText , emulatorPackage . packageName ) ) {
127
+ if ( lineText && _ . startsWith ( lineText , emulatorPackage . packageName ) ) {
129
128
let pid = _ . trimLeft ( lineText , emulatorPackage . packageName + ": " ) ;
130
-
129
+
131
130
this . $childProcess . exec ( `lldb -p ${ pid } -o "process continue"` ) ;
132
131
} else {
133
132
process . stdout . write ( line + "\n" ) ;
134
133
}
135
134
} ) ;
136
-
135
+
137
136
this . wireDebuggerClient ( ( ) => net . connect ( InspectorBackendPort ) ) . wait ( ) ;
138
137
} ) . future < void > ( ) ( ) ;
139
138
}
You can’t perform that action at this time.
0 commit comments