@@ -66,7 +66,9 @@ class IotjsDebugSession extends LoggingDebugSession {
66
66
* The 'initialize' request is the first request called by the frontend
67
67
* to interrogate the debug adapter about the features it provides.
68
68
*/
69
- protected initializeRequest ( response : DebugProtocol . InitializeResponse , args : DebugProtocol . InitializeRequestArguments ) : void {
69
+ protected initializeRequest (
70
+ response : DebugProtocol . InitializeResponse , args : DebugProtocol . InitializeRequestArguments
71
+ ) : void {
70
72
this . log ( 'initializeRequest' ) ;
71
73
72
74
this . sendEvent ( new InitializedEvent ( ) ) ;
@@ -81,7 +83,9 @@ class IotjsDebugSession extends LoggingDebugSession {
81
83
this . sendResponse ( response ) ;
82
84
}
83
85
84
- protected configurationDoneRequest ( response : DebugProtocol . ConfigurationDoneResponse , args : DebugProtocol . ConfigurationDoneArguments ) : void {
86
+ protected configurationDoneRequest (
87
+ response : DebugProtocol . ConfigurationDoneResponse , args : DebugProtocol . ConfigurationDoneArguments
88
+ ) : void {
85
89
this . log ( 'configurationDoneRequest' ) ;
86
90
87
91
super . configurationDoneRequest ( response , args ) ;
@@ -158,7 +162,9 @@ class IotjsDebugSession extends LoggingDebugSession {
158
162
this . sendErrorResponse ( response , 0 , 'Launching is not supported. Use Attach.' ) ;
159
163
}
160
164
161
- protected disconnectRequest ( response : DebugProtocol . DisconnectResponse , args : DebugProtocol . DisconnectArguments ) : void {
165
+ protected disconnectRequest (
166
+ response : DebugProtocol . DisconnectResponse , args : DebugProtocol . DisconnectArguments
167
+ ) : void {
162
168
this . log ( 'disconnectRequest' ) ;
163
169
164
170
this . _debuggerClient . disconnect ( ) ;
@@ -212,7 +218,9 @@ class IotjsDebugSession extends LoggingDebugSession {
212
218
this . sendResponse ( response ) ;
213
219
}
214
220
215
- protected setBreakPointsRequest ( response : DebugProtocol . SetBreakpointsResponse , args : DebugProtocol . SetBreakpointsArguments ) : void {
221
+ protected setBreakPointsRequest (
222
+ response : DebugProtocol . SetBreakpointsResponse , args : DebugProtocol . SetBreakpointsArguments
223
+ ) : void {
216
224
this . log ( 'setBreakPointsRequest: Not implemented yet' ) ;
217
225
218
226
this . sendResponse ( response ) ;
0 commit comments