-
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 flutterRelates to running Flutter appsRelates to running Flutter appsis bugrelies on sdk changesSomething that requires changes in the Dart/Flutter SDK to ship before it will become availableSomething that requires changes in the Dart/Flutter SDK to ship before it will become available
Milestone
Description
Describe the bug
Continue #4711 (comment)
Issue not resolved yet
new Flutter SDK debug adapters only handle stdout line start with #0 #1,...
all other lines start with any other strings like [log], flutter,... will not clickable
To Reproduce
Steps to reproduce the behavior:
- Use latest Flutter master channel create new project
flutter create . - Add example code in build method
final stack = StackTrace.current.toString().split('\n').take(2).join('\n');
final stack2 = '\n$stack';
log(stack);
debugPrint(stack);
log(stack2);
debugPrint(stack2);
Expected behavior
All line with stacktrace location should clickable even this line start with any string not #0, #1,...
Please complete the following information:
You can run the Dart: Collect Diagnostic Information command from the VS Code command palette (F1) to easily capture this information or provide it manually.
- Operating System and version: Windows 11 Build 22635.4515
- VS Code version: 1.95.3 (System setup)
- Dart extension version: v3.102.3
- Dart/Flutter SDK version: v3.102.3
- Target device (if the issue relates to Flutter debugging):
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 flutterRelates to running Flutter appsRelates to running Flutter appsis bugrelies on sdk changesSomething that requires changes in the Dart/Flutter SDK to ship before it will become availableSomething that requires changes in the Dart/Flutter SDK to ship before it will become available
