| OLD | NEW |
| 1 Starting session. Type 'help' for a list of commands. | 1 Starting session. Type 'help' for a list of commands. |
| 2 | 2 |
| 3 > b main | 3 > b main |
| 4 ### set breakpoint id: '0' method: 'main' bytecode index: '0' | 4 ### set breakpoint id: '0' method: 'main' bytecode index: '0' |
| 5 > r | 5 > r |
| 6 tests/debugger/unused_optional_test.dart:12:17 | 6 tests/debugger/unused_optional_test.dart:12:17 |
| 7 12 Expect.equals(1, 1); | 7 12 Expect.equals(1, 1); |
| 8 > s | 8 > s |
| 9 tests/debugger/unused_optional_test.dart:12:20 | 9 tests/debugger/unused_optional_test.dart:12:20 |
| 10 12 Expect.equals(1, 1); | 10 12 Expect.equals(1, 1); |
| 11 > s | 11 > s |
| 12 third_party/dart/pkg/expect/lib/expect.dart:93:65 | 12 third_party/dart/pkg/expect/lib/expect.dart:93:65 |
| 13 93 static void equals(var expected, var actual, [String reason = null]) { | 13 93 static void equals(var expected, var actual, [String reason = null]) { |
| 14 > l | 14 > l |
| 15 third_party/dart/pkg/expect/lib/expect.dart:93:65 | 15 third_party/dart/pkg/expect/lib/expect.dart:93:65 |
| 16 88 } | 16 88 } |
| 17 89 | 17 89 |
| 18 90 /** | 18 90 /** |
| 19 91 * Checks whether the expected and actual values are equal (using `==`). | 19 91 * Checks whether the expected and actual values are equal (using `==`). |
| 20 92 */ | 20 92 */ |
| 21 93 static void equals(var expected, var actual, [String reason = null]) { | 21 93 static void equals(var expected, var actual, [String reason = null]) { |
| 22 94 if (expected == actual) return; | 22 94 if (expected == actual) return; |
| 23 95 String msg = _getMessage(reason); | 23 95 String msg = _getMessage(reason); |
| 24 96 if (expected is String && actual is String) { | 24 96 if (expected is String && actual is String) { |
| 25 97 String stringDifference = _stringDifference(expected, actual); | 25 97 String stringDifference = _stringDifference(expected, actual); |
| 26 98 if (stringDifference != null) { | 26 98 if (stringDifference != null) { |
| 27 > c | 27 > c |
| 28 ### process terminated | 28 ### process terminated |
| 29 > q |
| OLD | NEW |