We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0da0479 commit d5f8ca7Copy full SHA for d5f8ca7
packages/flutter/lib/src/foundation/stack_frame.dart
@@ -78,6 +78,9 @@ class StackFrame {
78
// On the Web in non-debug builds the stack trace includes the exception
79
// message that precedes the stack trace itself. fromStackTraceLine will
80
// return null in that case. We will skip it here.
81
+ // TODO(polina-c): if one of lines was parsed to null, the entire stack trace
82
+ // is in unexpected format and should be returned as is, without partial parsing.
83
+ // https://github.com/flutter/flutter/issues/131877
84
.whereType<StackFrame>()
85
.toList();
86
}
0 commit comments