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

Side by Side Diff: packages/dart_style/test/regression/0200/0243.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 >>> (indent 4)
2 return new Container(
3 key: 'ChatApp',
4 children: [
5 new Container(
6 key: 'Content',
7 style: _content_style,
8 children: appChildren)]);
9 <<<
10 return new Container(
11 key: 'ChatApp',
12 children: [
13 new Container(
14 key: 'Content', style: _content_style, children: appChildren)
15 ]);
16 >>> (indent 10)
17 return new Container(
18 key: 'ChatApp',
19 children: [
20 new Container(
21 key: 'Content',
22 style: _content_style,
23 children: appChildren)]);
24 <<<
25 return new Container(
26 key: 'ChatApp',
27 children: [
28 new Container(
29 key: 'Content',
30 style: _content_style,
31 children: appChildren)
32 ]);
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0200/0242.unit ('k') | packages/dart_style/test/regression/0200/0247.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698