@@ -142,22 +142,22 @@ unsafe extern "C" fn v8_inspector__V8Inspector__Channel__BASE__sendResponse(
142142 call_id : int ,
143143 message : UniquePtr < StringBuffer > ,
144144) {
145- ChannelBase :: dispatch_mut ( this) . send_response ( call_id, message)
145+ ChannelBase :: dispatch_mut ( this) . send_response ( call_id, message) ;
146146}
147147
148148#[ no_mangle]
149149unsafe extern "C" fn v8_inspector__V8Inspector__Channel__BASE__sendNotification (
150150 this : & mut Channel ,
151151 message : UniquePtr < StringBuffer > ,
152152) {
153- ChannelBase :: dispatch_mut ( this) . send_notification ( message)
153+ ChannelBase :: dispatch_mut ( this) . send_notification ( message) ;
154154}
155155
156156#[ no_mangle]
157157unsafe extern "C" fn v8_inspector__V8Inspector__Channel__BASE__flushProtocolNotifications (
158158 this : & mut Channel ,
159159) {
160- ChannelBase :: dispatch_mut ( this) . flush_protocol_notifications ( )
160+ ChannelBase :: dispatch_mut ( this) . flush_protocol_notifications ( ) ;
161161}
162162
163163#[ no_mangle]
@@ -173,14 +173,14 @@ unsafe extern "C" fn v8_inspector__V8InspectorClient__BASE__runMessageLoopOnPaus
173173 context_group_id : int ,
174174) {
175175 V8InspectorClientBase :: dispatch_mut ( this)
176- . run_message_loop_on_pause ( context_group_id)
176+ . run_message_loop_on_pause ( context_group_id) ;
177177}
178178
179179#[ no_mangle]
180180unsafe extern "C" fn v8_inspector__V8InspectorClient__BASE__quitMessageLoopOnPause (
181181 this : & mut V8InspectorClient ,
182182) {
183- V8InspectorClientBase :: dispatch_mut ( this) . quit_message_loop_on_pause ( )
183+ V8InspectorClientBase :: dispatch_mut ( this) . quit_message_loop_on_pause ( ) ;
184184}
185185
186186#[ no_mangle]
@@ -189,7 +189,7 @@ unsafe extern "C" fn v8_inspector__V8InspectorClient__BASE__runIfWaitingForDebug
189189 context_group_id : int ,
190190) {
191191 V8InspectorClientBase :: dispatch_mut ( this)
192- . run_if_waiting_for_debugger ( context_group_id)
192+ . run_if_waiting_for_debugger ( context_group_id) ;
193193}
194194
195195#[ no_mangle]
@@ -211,7 +211,7 @@ unsafe extern "C" fn v8_inspector__V8InspectorClient__BASE__consoleAPIMessage(
211211 line_number,
212212 column_number,
213213 stack_trace,
214- )
214+ ) ;
215215}
216216
217217#[ no_mangle]
@@ -240,17 +240,17 @@ impl Channel {
240240 message : UniquePtr < StringBuffer > ,
241241 ) {
242242 unsafe {
243- v8_inspector__V8Inspector__Channel__sendResponse ( self , call_id, message)
243+ v8_inspector__V8Inspector__Channel__sendResponse ( self , call_id, message) ;
244244 }
245245 }
246246 pub fn send_notification ( & mut self , message : UniquePtr < StringBuffer > ) {
247247 unsafe {
248- v8_inspector__V8Inspector__Channel__sendNotification ( self , message)
248+ v8_inspector__V8Inspector__Channel__sendNotification ( self , message) ;
249249 }
250250 }
251251 pub fn flush_protocol_notifications ( & mut self ) {
252252 unsafe {
253- v8_inspector__V8Inspector__Channel__flushProtocolNotifications ( self )
253+ v8_inspector__V8Inspector__Channel__flushProtocolNotifications ( self ) ;
254254 }
255255 }
256256}
@@ -419,7 +419,7 @@ mod tests {
419419 self . log_call ( ) ;
420420 }
421421 fn flush_protocol_notifications ( & mut self ) {
422- self . log_call ( )
422+ self . log_call ( ) ;
423423 }
424424 }
425425
@@ -464,7 +464,7 @@ impl V8InspectorClient {
464464 v8_inspector__V8InspectorClient__runMessageLoopOnPause (
465465 self ,
466466 context_group_id,
467- )
467+ ) ;
468468 }
469469 }
470470
@@ -477,7 +477,7 @@ impl V8InspectorClient {
477477 v8_inspector__V8InspectorClient__runIfWaitingForDebugger (
478478 self ,
479479 context_group_id,
480- )
480+ ) ;
481481 }
482482 }
483483
@@ -502,7 +502,7 @@ impl V8InspectorClient {
502502 line_number,
503503 column_number,
504504 stack_trace,
505- )
505+ ) ;
506506 }
507507 }
508508
@@ -668,7 +668,7 @@ impl V8InspectorSession {
668668
669669 pub fn dispatch_protocol_message ( & mut self , message : StringView ) {
670670 unsafe {
671- v8_inspector__V8InspectorSession__dispatchProtocolMessage ( self , message)
671+ v8_inspector__V8InspectorSession__dispatchProtocolMessage ( self , message) ;
672672 }
673673 }
674674
@@ -680,7 +680,7 @@ impl V8InspectorSession {
680680 unsafe {
681681 v8_inspector__V8InspectorSession__schedulePauseOnNextStatement (
682682 self , reason, detail,
683- )
683+ ) ;
684684 }
685685 }
686686}
@@ -899,7 +899,7 @@ impl<'a, T> Deref for CharacterArray<'a, T> {
899899 } = * self ;
900900 if m_characters. is_null ( ) {
901901 assert_eq ! ( m_length, 0 ) ;
902- m_characters = NonNull :: dangling ( ) . as_ptr ( )
902+ m_characters = NonNull :: dangling ( ) . as_ptr ( ) ;
903903 } ;
904904 unsafe { slice:: from_raw_parts ( m_characters, m_length) }
905905 }
@@ -1002,7 +1002,7 @@ impl V8Inspector {
10021002 context_group_id,
10031003 human_readable_name,
10041004 aux_data,
1005- )
1005+ ) ;
10061006 }
10071007 }
10081008
0 commit comments