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

Unified Diff: pkg/kernel/testcases/closures/closures.dart.expect

Issue 2778223002: Add primitive to create closures and use it for closure conversion (Closed)
Patch Set: Follow common pattern for AST nodes with References in ClosureCreation 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 side-by-side diff with in-line comments
Download patch
Index: pkg/kernel/testcases/closures/closures.dart.expect
diff --git a/pkg/kernel/testcases/closures/closures.dart.expect b/pkg/kernel/testcases/closures/closures.dart.expect
index af90ef3641f8c6510c995b2e5bd5f4f76fed7559..0861f0b2f03634068968e31b2ae63a905597e2f5 100644
--- a/pkg/kernel/testcases/closures/closures.dart.expect
+++ b/pkg/kernel/testcases/closures/closures.dart.expect
@@ -2,18 +2,6 @@ library;
import self as self;
import "dart:core" as core;
-class Closure#main#function extends core::Object implements core::Function {
- field core::String note = "This is temporary. The VM doesn't need closure classes.";
- field Vector context;
- constructor •(final Vector context) → dynamic
- : self::Closure#main#function::context = context
- ;
- method call(dynamic x) → dynamic {
- "This is a temporary solution. In the VM, this will become an additional parameter.";
- final Vector #contextParameter = this.{self::Closure#main#function::context};
- return (#contextParameter[1]).[](x);
- }
-}
static field dynamic f = null;
static method foo() → dynamic {
core::print(self::f.call(0));
@@ -21,6 +9,9 @@ static method foo() → dynamic {
static method main(dynamic arguments) → dynamic {
final Vector #context = MakeVector(2);
#context[1] = arguments;
- self::f = new self::Closure#main#function::•(#context);
+ self::f = MakeClosure<(dynamic) → dynamic>(self::closure#main#function, #context);
self::foo();
}
+static method closure#main#function(Vector #contextParameter, dynamic x) → dynamic {
+ return (#contextParameter[1]).[](x);
+}

Powered by Google App Engine
This is Rietveld 408576698