Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 7960ad5

Browse files
bkonyicommit-bot@chromium.org
authored andcommitted
[ Service ] Fix line numbers in step_through_mixin_from_sdk_test
Fixes dart-lang/sdk#42686 Change-Id: I0b2263560a2a01fa897f8b2a1fe0d5ad4b1a6895 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/154561 Reviewed-by: Ryan Macnak <rmacnak@google.com> Commit-Queue: Ben Konyi <bkonyi@google.com>
1 parent 505fca1 commit 7960ad5

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

runtime/observatory/tests/service/step_through_mixin_from_sdk_test.dart

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ List<String> stops = [];
3535
List<String> expected = [
3636
"$file:${LINE + 0}:17", // on "Foo" (in "new Foo()")
3737
"$file:${LINE + 1}:11", // on "="
38-
"list.dart:105:25", // on parameter to "contains"
39-
"list.dart:106:23", // on "length" in "this.length"
40-
"list.dart:107:16", // on "=" in "i = 0"
41-
"list.dart:107:23", // on "<" in "i < length"
42-
"list.dart:108:15", // on "[" in "this[i]"
38+
"list.dart:124:25", // on parameter to "contains"
39+
"list.dart:125:23", // on "length" in "this.length"
40+
"list.dart:126:16", // on "=" in "i = 0"
41+
"list.dart:126:23", // on "<" in "i < length"
42+
"list.dart:127:15", // on "[" in "this[i]"
4343
"$file:${LINE + 13}:23", // on parameter in "operator []"
4444
"$file:${LINE + 14}:5", // on "return"
45-
"list.dart:108:19", // on "=="
46-
"list.dart:109:26", // on "length" in "this.length"
47-
"list.dart:109:18", // on "!="
48-
"list.dart:107:34", // on "++" in "i++"
49-
"list.dart:107:23", // on "<" in "i < length"
50-
"list.dart:113:5", // on "return"
45+
"list.dart:127:19", // on "=="
46+
"list.dart:128:26", // on "length" in "this.length"
47+
"list.dart:128:18", // on "!="
48+
"list.dart:126:34", // on "++" in "i++"
49+
"list.dart:126:23", // on "<" in "i < length"
50+
"list.dart:132:5", // on "return"
5151
"$file:${LINE + 4}:5", // on "print"
5252
"$file:${LINE + 6}:1" // on ending '}'
5353
];

0 commit comments

Comments
 (0)