@@ -69,7 +69,7 @@ class IOSDebugService implements IDebugService {
69
69
constructor (
70
70
private $platformService : IPlatformService ,
71
71
private $iOSEmulatorServices : Mobile . IEmulatorPlatformServices ,
72
- private $devicesServices : Mobile . IDevicesServices ,
72
+ private $devicesService : Mobile . IDevicesService ,
73
73
private $platformsData : IPlatformsData ,
74
74
private $projectData : IProjectData ,
75
75
private $childProcess : IChildProcess ,
@@ -151,8 +151,8 @@ class IOSDebugService implements IDebugService {
151
151
152
152
private deviceDebugBrk ( ) : IFuture < void > {
153
153
return ( ( ) => {
154
- this . $devicesServices . initialize ( { platform : this . platform , deviceId : this . $options . device } ) . wait ( ) ;
155
- this . $devicesServices . execute ( ( device : iOSDevice . IOSDevice ) => ( ( ) => {
154
+ this . $devicesService . initialize ( { platform : this . platform , deviceId : this . $options . device } ) . wait ( ) ;
155
+ this . $devicesService . execute ( ( device : iOSDevice . IOSDevice ) => ( ( ) => {
156
156
// we intentionally do not wait on this here, because if we did, we'd miss the AppLaunching notification
157
157
let deploy = this . $platformService . deployOnDevice ( this . platform ) ;
158
158
this . debugBrkCore ( device ) . wait ( ) ;
@@ -163,8 +163,8 @@ class IOSDebugService implements IDebugService {
163
163
164
164
public debugStart ( ) : IFuture < void > {
165
165
return ( ( ) => {
166
- this . $devicesServices . initialize ( { platform : this . platform , deviceId : this . $options . device } ) . wait ( ) ;
167
- this . $devicesServices . execute ( ( device : iOSDevice . IOSDevice ) => this . debugBrkCore ( device ) ) . wait ( ) ;
166
+ this . $devicesService . initialize ( { platform : this . platform , deviceId : this . $options . device } ) . wait ( ) ;
167
+ this . $devicesService . execute ( ( device : iOSDevice . IOSDevice ) => this . debugBrkCore ( device ) ) . wait ( ) ;
168
168
} ) . future < void > ( ) ( ) ;
169
169
}
170
170
@@ -193,8 +193,8 @@ class IOSDebugService implements IDebugService {
193
193
194
194
private deviceStart ( ) : IFuture < void > {
195
195
return ( ( ) => {
196
- this . $devicesServices . initialize ( { platform : this . platform , deviceId : this . $options . device } ) . wait ( ) ;
197
- this . $devicesServices . execute ( device => ( ( ) => {
196
+ this . $devicesService . initialize ( { platform : this . platform , deviceId : this . $options . device } ) . wait ( ) ;
197
+ this . $devicesService . execute ( device => ( ( ) => {
198
198
let iosDevice = < iOSDevice . IOSDevice > device ;
199
199
let projectId = this . $projectData . projectId ;
200
200
let npc = new iOSProxyServices . NotificationProxyClient ( iosDevice , this . $injector ) ;
0 commit comments