-
Notifications
You must be signed in to change notification settings - Fork 340
Closed
Labels
in debuggingRelates to the debug adapter or process of running debug sessionsRelates to the debug adapter or process of running debug sessionsin webRelates to running Dart or Flutter web appsRelates to running Dart or Flutter web appsis bug
Milestone
Description
When running a (non-Flutter) web app like this (the delay is to avoid dart-lang/webdev#830):
void main() {
querySelector('#output').text = 'Your Dart app is running.';
// BREAKPOINT1^
Future.delayed(const Duration(seconds: 5)).then((_) {
// Breakpoint on the line below
querySelector('#output').text = 'Delayed function has run!';
});
}When the breakpoint is hit, we don't jump to any code and the stack looks like this:
VM service shows that we can get sources for at least one of these frames, even though we can't map it back to a local file (since it's an org-dartlang URI).
Metadata
Metadata
Assignees
Labels
in debuggingRelates to the debug adapter or process of running debug sessionsRelates to the debug adapter or process of running debug sessionsin webRelates to running Dart or Flutter web appsRelates to running Dart or Flutter web appsis bug
