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

Side by Side Diff: pkg/front_end/testcases/argument.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 abstract class Base {} 1 abstract class Base {}
2 2
3 class Foo extends Base {} 3 class Foo extends Base {}
4 4
5 class Bar extends Base {} 5 class Bar extends Base {}
6 6
7 class Baz extends Base {} 7 class Baz extends Base {}
8 8
9 void foo(x) {} 9 void foo(x) {}
10 10
11 void bar(x) {} 11 void bar(x) {}
12 12
13 void foo_escaped(x) {} 13 void foo_escaped(x) {}
14 14
15 void bar_escaped(x) {} 15 void bar_escaped(x) {}
16 16
17 void escape(fn) { 17 void escape(fn) {
18 fn(new Baz()); 18 fn(new Baz());
19 } 19 }
20 20
21 main() { 21 main() {
22 foo(new Foo()); 22 foo(new Foo());
23 bar(new Bar()); 23 bar(new Bar());
24 escape(foo_escaped); 24 escape(foo_escaped);
25 escape(bar_escaped); 25 escape(bar_escaped);
26 } 26 }
OLDNEW
« no previous file with comments | « pkg/front_end/testcases/accessors.dart.outline.expect ('k') | pkg/front_end/testcases/argument.dart.direct.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698