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

Side by Side Diff: pkg/kernel/testcases/input/call.dart

Issue 2747113004: Run dartfmt on kernel package (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « pkg/kernel/testcases/input/argument.dart ('k') | pkg/kernel/testcases/input/closure.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 class Callable { 1 class Callable {
2 call(x) { 2 call(x) {
3 return "string"; 3 return "string";
4 } 4 }
5 } 5 }
6 6
7 class CallableGetter { 7 class CallableGetter {
8 get call => new Callable(); 8 get call => new Callable();
9 } 9 }
10 10
(...skipping 19 matching lines...) Expand all
30 var nothing1 = closure(); 30 var nothing1 = closure();
31 var nothing2 = closure.call(); 31 var nothing2 = closure.call();
32 var nothing3 = closure.call.call(); 32 var nothing3 = closure.call.call();
33 var nothing4 = closure.call.call.call(); 33 var nothing4 = closure.call.call.call();
34 34
35 var nothing5 = callable(); 35 var nothing5 = callable();
36 var nothing6 = callable.call(); 36 var nothing6 = callable.call();
37 var nothing7 = callable.call.call(); 37 var nothing7 = callable.call.call();
38 var nothing8 = callable.call.call.call(); 38 var nothing8 = callable.call.call.call();
39 39
40 var nothing9 = callableGetter(); 40 var nothing9 = callableGetter();
41 var nothing10 = callableGetter.call(); 41 var nothing10 = callableGetter.call();
42 var nothing11 = callableGetter.call.call(); 42 var nothing11 = callableGetter.call.call();
43 var nothing12 = callableGetter.call.call.call(); 43 var nothing12 = callableGetter.call.call.call();
44 } 44 }
OLDNEW
« no previous file with comments | « pkg/kernel/testcases/input/argument.dart ('k') | pkg/kernel/testcases/input/closure.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698