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

Side by Side Diff: packages/dart_style/test/regression/0000/0044.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 foo() {
3 assert(argument != argument && (argument.isDynamic || argument.isSubTypeOf(arg ument, argument)));
4 }
5 <<<
6 foo() {
7 assert(argument != argument &&
8 (argument.isDynamic || argument.isSubTypeOf(argument, argument)));
9 }
10 >>>
11 foo() {
12 if (xxx) {
13 if (zzzzzzzzzzzzz != aaaaaaaa.bbbbbbbb && !cccccccccccc && ddddddddd.eeee == "fff") {
14 return true;
15 }
16
17 if (yyy) {
18 if (!ggggggggggg(p2.type, p1.type) && !(jjjj && hhhhhhhhhhhhhhhh(p2.type, p1.type))) return false;
19 if (!ggggggggggg(p2.type, p1.type) && !(jjjj && hhhhhhhhhhhhhhhh(p2.type, p1.type))) {
20 return false;
21 }
22 }
23 }
24 }
25 <<<
26 foo() {
27 if (xxx) {
28 if (zzzzzzzzzzzzz != aaaaaaaa.bbbbbbbb &&
29 !cccccccccccc &&
30 ddddddddd.eeee == "fff") {
31 return true;
32 }
33
34 if (yyy) {
35 if (!ggggggggggg(p2.type, p1.type) &&
36 !(jjjj && hhhhhhhhhhhhhhhh(p2.type, p1.type))) return false;
37 if (!ggggggggggg(p2.type, p1.type) &&
38 !(jjjj && hhhhhhhhhhhhhhhh(p2.type, p1.type))) {
39 return false;
40 }
41 }
42 }
43 }
44 >>>
45 assert(say('Bob', 'Howdy', 'smoke signal') ==
46 'Bob says Howdy with a smoke signal');
47 <<<
48 assert(say('Bob', 'Howdy', 'smoke signal') ==
49 'Bob says Howdy with a smoke signal');
50 >>>
51 void main() {
52 var xxxxxxxYyyyyyyy = aaaabbb
53 ? CCCCCCCCCCCC.mmmmmmmmmmmmmmmmmm1(arg00000000000)
54 : CCCCCCCCCCCC.mmmmmmmmmmmmmmmmmm(arg1111111111111);
55 }
56 <<<
57 void main() {
58 var xxxxxxxYyyyyyyy = aaaabbb
59 ? CCCCCCCCCCCC.mmmmmmmmmmmmmmmmmm1(arg00000000000)
60 : CCCCCCCCCCCC.mmmmmmmmmmmmmmmmmm(arg1111111111111);
61 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0000/0042.unit ('k') | packages/dart_style/test/regression/0000/0045.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698