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

Unified Diff: pkg/kernel/testcases/closures/catch.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/catch.dart.expect
diff --git a/pkg/kernel/testcases/closures/catch.dart.expect b/pkg/kernel/testcases/closures/catch.dart.expect
index 4e60e74af0a8e48865d64ee0dcca79bdfec0f970..c67759d4af19ad835332500184bc11726a3f45d0 100644
--- a/pkg/kernel/testcases/closures/catch.dart.expect
+++ b/pkg/kernel/testcases/closures/catch.dart.expect
@@ -2,20 +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 {
- "This is a temporary solution. In the VM, this will become an additional parameter.";
- final Vector #contextParameter = this.{self::Closure#main#function::context};
- core::print(#contextParameter[1]);
- if(!(#contextParameter[2]).==(null))
- core::print(#contextParameter[2]);
- }
-}
static method main() → dynamic {
dynamic c;
try {
@@ -25,8 +11,13 @@ static method main() → dynamic {
final Vector #context = MakeVector(3);
#context[1] = #t1;
#context[2] = #t2;
- c = new self::Closure#main#function::•(#context);
+ c = MakeClosure<() → dynamic>(self::closure#main#function, #context);
}
c.call();
core::print("TEST PASSED");
}
+static method closure#main#function(Vector #contextParameter) → dynamic {
+ core::print(#contextParameter[1]);
+ if(!(#contextParameter[2]).==(null))
+ core::print(#contextParameter[2]);
+}

Powered by Google App Engine
This is Rietveld 408576698