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

Side by Side Diff: pkg/front_end/testcases/call.dart

Issue 2825063002: Move kernel baseline tests to front_end. (Closed)
Patch Set: Created 3 years, 8 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 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 24 matching lines...) Expand all
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/front_end/testcases/bad_store.dart.strong.expect ('k') | pkg/front_end/testcases/call.dart.direct.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698