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

Side by Side Diff: pkg/kernel/testcases/closures/named_closure.dart.expect

Issue 3008923002: Improve the performance of closure-converted code. (Closed)
Patch Set: Additional bug fixes. Created 3 years, 3 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 library; 1 library;
2 import self as self; 2 import self as self;
3 import "dart:core" as core; 3 import "dart:core" as core;
4 4
5 static field dynamic f; 5 static field dynamic f;
6 static method foo() → dynamic { 6 static method foo() → dynamic {
7 core::print(self::f.call(0)); 7 core::print(self::f.call(0));
8 } 8 }
9 static method main(dynamic arguments) → dynamic { 9 static method main(dynamic arguments) → dynamic {
10 final dynamic #context = MakeVector(3); 10 final dynamic #context = MakeVector(3);
11 #context[2] = arguments; 11 #context[2] = arguments;
12 arguments = null;
12 final (dynamic) → dynamic g = MakeClosure<(dynamic) → dynamic>(self::closure#m ain#g, #context); 13 final (dynamic) → dynamic g = MakeClosure<(dynamic) → dynamic>(self::closure#m ain#g, #context);
13 self::f = g; 14 self::f = g;
14 self::foo(); 15 self::foo();
15 } 16 }
16 static method closure#main#g(dynamic #contextParameter, dynamic x) → dynamic { 17 static method closure#main#g(dynamic #contextParameter, dynamic x) → dynamic {
17 return (#contextParameter[2]).[](x); 18 return (#contextParameter[2]).[](x);
18 } 19 }
OLDNEW
« no previous file with comments | « pkg/kernel/testcases/closures/loop2.dart.expect ('k') | pkg/kernel/testcases/closures/syncstar.dart.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698