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

Side by Side Diff: packages/dart_style/test/whitespace/expressions.stmt

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 4 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
1 40 columns | 1 40 columns |
2 >>> arithmetic operators 2 >>> arithmetic operators
3 var a=1+2/(3*-b~/4); 3 var a=1+2/(3*-b~/4);
4 <<< 4 <<<
5 var a = 1 + 2 / (3 * -b ~/ 4); 5 var a = 1 + 2 / (3 * -b ~/ 4);
6 >>> conditional operator 6 >>> conditional operator
7 var c=!condition==a>b; 7 var c=!condition==a>b;
8 <<< 8 <<<
9 var c = !condition == a > b; 9 var c = !condition == a > b;
10 >>> 10 >>>
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 argument?? argument; 107 argument?? argument;
108 <<< 108 <<<
109 argument ?? argument; 109 argument ?? argument;
110 >>> ?. operator 110 >>> ?. operator
111 receiver ?. method() ?. getter; 111 receiver ?. method() ?. getter;
112 <<< 112 <<<
113 receiver?.method()?.getter; 113 receiver?.method()?.getter;
114 >>> null coalescing self assignment 114 >>> null coalescing self assignment
115 variableName??=argument; 115 variableName??=argument;
116 <<< 116 <<<
117 variableName ??= argument; 117 variableName ??= argument;
118 >>> trailing comma in single argument list
119 function(argument , );
120 <<<
121 function(
122 argument,
123 );
124 >>> trailing comma in argument list
125 function(argument,argument , );
126 <<<
127 function(
128 argument,
129 argument,
130 );
131 >>> trailing comma in named argument list
132 function(named: arg,another:arg, );
133 <<<
134 function(
135 named: arg,
136 another: arg,
137 );
138 >>> generic method call
139 method <int,String , bool> ();
140 <<<
141 method<int, String, bool>();
OLDNEW
« no previous file with comments | « packages/dart_style/test/whitespace/enums.unit ('k') | packages/dart_style/test/whitespace/functions.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698