You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In flutter/flutter#40191 I'm attempting to add support for the debug extension with a --no-launch argument.
I've updated the tool so that when we anticipate connecting via the chrome extension, we don't call runMain on the app connection and instead get the debug connection from the extensionDebugConnections controller.
Once I've opened the page and clicked the extension icon to start debugging, I see everything initially succeed, only to crash with several unhandled exceptions. This seems to be partially triggered by the devtools starting up, which on my machine will also have the debug extension running in its tab.
I don't think either stack trace points to a root cause, since it seems like something else is causing the extension/dwds to get into a bad state. I also tried to disable the devtools launch, but it looks like it is required
The text was updated successfully, but these errors were encountered:
Background:
In flutter/flutter#40191 I'm attempting to add support for the debug extension with a
--no-launch
argument.I've updated the tool so that when we anticipate connecting via the chrome extension, we don't call runMain on the app connection and instead get the debug connection from the
extensionDebugConnections
controller.Once I've opened the page and clicked the extension icon to start debugging, I see everything initially succeed, only to crash with several unhandled exceptions. This seems to be partially triggered by the devtools starting up, which on my machine will also have the debug extension running in its tab.
Original exception:
Patching this locally with a
?? ''
check on the encoding prevents this error, but this results in a new exception:I don't think either stack trace points to a root cause, since it seems like something else is causing the extension/dwds to get into a bad state. I also tried to disable the devtools launch, but it looks like it is required
The text was updated successfully, but these errors were encountered: