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

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

Issue 2526633002: Support generic methods. Fix #556. (Closed)
Patch Set: Merge branch 'master' into generic-methods Created 4 years 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 | « test/splitting/type_arguments.stmt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 function( 127 function(
128 argument, 128 argument,
129 argument, 129 argument,
130 ); 130 );
131 >>> trailing comma in named argument list 131 >>> trailing comma in named argument list
132 function(named: arg,another:arg, ); 132 function(named: arg,another:arg, );
133 <<< 133 <<<
134 function( 134 function(
135 named: arg, 135 named: arg,
136 another: arg, 136 another: arg,
137 ); 137 );
138 >>> generic method call
139 method <int,String , bool> ();
140 <<<
141 method<int, String, bool>();
OLDNEW
« no previous file with comments | « test/splitting/type_arguments.stmt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698