We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given a simple Dart web app created with dart create -t web and the code updated to:
dart create -t web
import 'dart:html'; Future<void> main() async { // TODO: Remove this delay when breakpoints in startup code work // https://github.com/dart-lang/webdev/issues/830 await Future.delayed(const Duration(seconds: 1)); methodThatThrows(); querySelector('#output')!.text = 'Your Dart app is running.'; } void methodThatThrows() { throw Exception("Oops"); }
When the exception is triggered, the pause event is PauseInterrupted instead of PauseException:
PauseInterrupted
PauseException
{ "jsonrpc": "2.0", "method": "streamNotify", "params": { "streamId": "Debug", "event": { "type": "Event", "kind": "PauseInterrupted", "timestamp": 1709810801870, "isolate": { "type": "@Isolate", "id": "1", "number": "1", "name": "main()", "isSystemIsolate": false, "isolateGroupId": "" }, "topFrame": { "type": "Frame", "index": 21, "code": { "type": "@Code", "id": "3", "name": "main$", "kind": "Dart" }, "location": { "type": "SourceLocation", "script": { "type": "@Script", "id": "2", "uri": "org-dartlang-app:///web/main.dart" }, "tokenPos": 1339, "line": 6, "column": 16 }, "kind": "AsyncCausal" } } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given a simple Dart web app created with
dart create -t web
and the code updated to:When the exception is triggered, the pause event is
PauseInterrupted
instead ofPauseException
:The text was updated successfully, but these errors were encountered: