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

Unified Diff: pkg/kernel/testcases/closures/uncaptured_for_in_loop.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
« no previous file with comments | « pkg/kernel/testcases/closures/type_variables.dart.expect ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/testcases/closures/uncaptured_for_in_loop.dart.expect
diff --git a/pkg/kernel/testcases/closures/uncaptured_for_in_loop.dart.expect b/pkg/kernel/testcases/closures/uncaptured_for_in_loop.dart.expect
index 7c6057c91cce0a3e33d013346faf1752f026ee8e..1f652f3e86e795079b62e0443734a19fb9578a28 100644
--- a/pkg/kernel/testcases/closures/uncaptured_for_in_loop.dart.expect
+++ b/pkg/kernel/testcases/closures/uncaptured_for_in_loop.dart.expect
@@ -2,25 +2,13 @@ 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 {
- "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];
- }
-}
static const field dynamic numbers = const <core::int>[0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
static method main() → dynamic {
dynamic closures = <dynamic>[];
for (core::int i in self::numbers) {
final Vector #context = MakeVector(2);
#context[1] = i;
- closures.add(new self::Closure#main#function::•(#context));
+ closures.add(MakeClosure<() → dynamic>(self::closure#main#function, #context));
}
core::int sum = 0;
for (core::Function f in closures) {
@@ -31,3 +19,6 @@ static method main() → dynamic {
throw core::Exception::•("Unexpected sum = ${sum} != ${expectedSum}");
}
}
+static method closure#main#function(Vector #contextParameter) → dynamic {
+ return #contextParameter[1];
+}
« no previous file with comments | « pkg/kernel/testcases/closures/type_variables.dart.expect ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698