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

Side by Side Diff: packages/dart_style/test/regression/0000/0037.stmt

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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
OLDNEW
(Empty)
1 >>>
2 var map = {
3 'af' : const {
4 'd': 'd', // DAY
5 'E': 'EEE', // ABBR_WEEKDAY
6 'EEEE': 'EEEE', // WEEKDAY
7 'LLL': 'LLL', // ABBR_STANDALONE_MONTH
8 }
9 };
10 <<<
11 var map = {
12 'af': const {
13 'd': 'd', // DAY
14 'E': 'EEE', // ABBR_WEEKDAY
15 'EEEE': 'EEEE', // WEEKDAY
16 'LLL': 'LLL', // ABBR_STANDALONE_MONTH
17 }
18 };
19 >>>
20 remote.then((_) => response.first)
21 .whenComplete(response.close) // Close when complete.
22 .then((sendPort) {
23 sendReceive(sendPort, 'foo')
24 .then((msg) {
25 print('remote isolate handler received msg: $msg');
26 });
27 });
28 <<<
29 remote
30 .then((_) => response.first)
31 .whenComplete(response.close) // Close when complete.
32 .then((sendPort) {
33 sendReceive(sendPort, 'foo').then((msg) {
34 print('remote isolate handler received msg: $msg');
35 });
36 });
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0000/0036.unit ('k') | packages/dart_style/test/regression/0000/0038.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698