Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: tests/debugger/unused_optional_expected.txt

Issue 2029723004: Don't quit debugger when the program terminates, only after `quit`. Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/debugger/uncaught_exceptions_test.dart ('k') | tests/debugger/unused_optional_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
OLDNEW
« no previous file with comments | « tests/debugger/uncaught_exceptions_test.dart ('k') | tests/debugger/unused_optional_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698