File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
dwds/debug_extension_mv3/web Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -424,15 +424,15 @@ class _DebugSession {
424424 // What triggered the debug session (debugger panel, extension icon, etc.)
425425 final Trigger ? trigger;
426426
427- // The tab ID that contains the corresponding Dart DevTools.
428- late final int ? devToolsTabId;
429-
430427 // Socket client for communication with dwds extension backend.
431428 late final SocketClient _socketClient;
432429
433430 // How often to send batched events.
434431 static const int _batchDelayMilliseconds = 1000 ;
435432
433+ // The tab ID that contains the corresponding Dart DevTools, if it exists.
434+ int ? devToolsTabId;
435+
436436 // Collect events into batches to be send periodically to the server.
437437 final _batchController =
438438 BatchedStreamController <ExtensionEvent >(delay: _batchDelayMilliseconds);
You can’t perform that action at this time.
0 commit comments