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

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

Issue 2998803002: [kernel] Support for top-level generic functions. (Closed)
Patch Set: Review comments. Created 3 years, 4 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 Vector #context = MakeVector(2); 10 final Vector #context = MakeVector(3);
11 #context[1] = arguments; 11 #context[2] = arguments;
12 self::f = MakeClosure<(dynamic) → dynamic>(self::closure#main#function, #conte xt); 12 self::f = MakeClosure<(dynamic) → dynamic>(self::closure#main#function, #conte xt);
13 self::foo(); 13 self::foo();
14 } 14 }
15 static method closure#main#function(Vector #contextParameter, dynamic x) → dynam ic { 15 static method closure#main#function(Vector #contextParameter, dynamic x) → dynam ic {
16 return (#contextParameter[1]).[](x); 16 return (#contextParameter[2]).[](x);
17 } 17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698