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 ce8fe3b commit dc8dda6Copy full SHA for dc8dda6
lib/src/errors/stack_trace_extension.dart
@@ -8,8 +8,8 @@ extension StackTraceExtension on StackTrace {
8
final trace = Trace.from(this);
9
10
// We are looking for frames from the body of the supplied test function.
11
- int index = 0;
12
- bool found = false;
+ var index = 0;
+ var found = false;
13
while (!found) {
14
index = trace.frames.indexWhere(
15
(f) => f.package == 'parameterized_test',
0 commit comments