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

Unified Diff: pkg/kernel/testcases/closures/named_closure.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/named_closure.dart.expect
diff --git a/pkg/kernel/testcases/closures/named_closure.dart.expect b/pkg/kernel/testcases/closures/named_closure.dart.expect
index 56379b60190987d50b1bc915ec4e3fb793abbd0d..d4358ffa9219cb1c22f64fe6d4965d6518557cc1 100644
--- a/pkg/kernel/testcases/closures/named_closure.dart.expect
+++ b/pkg/kernel/testcases/closures/named_closure.dart.expect
@@ -2,18 +2,6 @@ library;
import self as self;
import "dart:core" as core;
-class Closure#main#g 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#g::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#g::context};
- return (#contextParameter[1]).[](x);
- }
-}
static field dynamic f = null;
static method foo() → dynamic {
core::print(self::f.call(0));
@@ -21,7 +9,10 @@ static method foo() → dynamic {
static method main(dynamic arguments) → dynamic {
final Vector #context = MakeVector(2);
#context[1] = arguments;
- final (dynamic) → dynamic g = new self::Closure#main#g::•(#context);
+ final (dynamic) → dynamic g = MakeClosure<(dynamic) → dynamic>(self::closure#main#g, #context);
self::f = g;
self::foo();
}
+static method closure#main#g(Vector #contextParameter, dynamic x) → dynamic {
+ return (#contextParameter[1]).[](x);
+}

Powered by Google App Engine
This is Rietveld 408576698