-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement the VM service getFlagList
API
#2438
Conversation
bool _pauseIsolatesOnStart = false; | ||
/// The flags that can be set at runtime via [setFlag]. | ||
final Map<String, bool> _supportedVmServiceFlags = { | ||
_pauseIsolatesOnStartFlag: false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is pause-on-exit not supported?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pause-on-exit is not supported - because the web doesn't have "real" isolates we mimic the pause-on-start behavior by waiting to run the app's main method until we get a resume event. However, I can't think of a way we could mimic pause-on-exit.
@@ -92,12 +92,16 @@ class ChromeProxyService implements VmServiceInterface { | |||
|
|||
StreamSubscription<ConsoleAPIEvent>? _consoleSubscription; | |||
|
|||
bool _pauseIsolatesOnStart = false; | |||
/// The flags that can be set at runtime via [setFlag]. | |||
final Map<String, bool> _supportedVmServiceFlags = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the name of this map a bit misleading now? It sounds like a set of supported flags, but based on the comment and code below, it appears to be holding the actual flag values now too. (_currentVmServiceFlags
or something?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point, changed to _currentVmServiceFlags!
Fixes dart-lang/sdk#55859
FYI @DanTup