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

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

Issue 2561723003: Merge kernel closure conversion into the Dart SDK (Closed)
Patch Set: Remove path constraint Created 4 years 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/capture_this.dart ('k') | pkg/kernel/testcases/closures/catch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/testcases/closures/capture_this.dart.expect
diff --git a/pkg/kernel/testcases/closures/capture_this.dart.expect b/pkg/kernel/testcases/closures/capture_this.dart.expect
new file mode 100644
index 0000000000000000000000000000000000000000..442f00a28931f5c45badf402658f2ec386b8892d
--- /dev/null
+++ b/pkg/kernel/testcases/closures/capture_this.dart.expect
@@ -0,0 +1,69 @@
+library;
+import self as self;
+import "dart:core" as core;
+import "dart:mock" as mock;
+
+class C extends core::Object {
+ field dynamic x = null;
+ constructor •() → void
+ : super core::Object::•()
+ ;
+ method m() → dynamic {
+ final mock::Context #context = new mock::Context::•(1);
+ #context.parent = null;
+ #context.[]=(0, this);
+ return new self::Closure#C#m#function::•(#context);
+ }
+ method f() → dynamic {
+ final mock::Context #context = new mock::Context::•(1);
+ #context.parent = null;
+ #context.[]=(0, this);
+ return new self::Closure#C#f#function::•(#context);
+ }
+}
+class Closure#C#m#function extends core::Object implements core::Function {
+ field core::String note = "This is temporary. The VM doesn't need closure classes.";
+ field mock::Context context;
+ constructor •(final mock::Context context) → dynamic
+ : self::Closure#C#m#function::context = context
+ ;
+ method call(dynamic v) → dynamic {
+ "This is a temporary solution. In the VM, this will become an additional parameter.";
+ final mock::Context #contextParameter = this.{self::Closure#C#m#function::context};
+ return #contextParameter.[](0).x = v;
+ }
+}
+class Closure#C#f#function#function extends core::Object implements core::Function {
+ field core::String note = "This is temporary. The VM doesn't need closure classes.";
+ field mock::Context context;
+ constructor •(final mock::Context context) → dynamic
+ : self::Closure#C#f#function#function::context = context
+ ;
+ method call() → dynamic {
+ "This is a temporary solution. In the VM, this will become an additional parameter.";
+ final mock::Context #contextParameter = this.{self::Closure#C#f#function#function::context};
+ return #contextParameter.[](0).x;
+ }
+}
+class Closure#C#f#function extends core::Object implements core::Function {
+ field core::String note = "This is temporary. The VM doesn't need closure classes.";
+ field mock::Context context;
+ constructor •(final mock::Context context) → dynamic
+ : self::Closure#C#f#function::context = context
+ ;
+ method call() → dynamic {
+ "This is a temporary solution. In the VM, this will become an additional parameter.";
+ final mock::Context #contextParameter = this.{self::Closure#C#f#function::context};
+ return new self::Closure#C#f#function#function::•(#contextParameter);
+ }
+}
+static method main() → dynamic {
+ self::C c = new self::C::•();
+ c.x = 41;
+ c.m().call(42);
+ if(!42.==(c.x))
+ throw "Unexpected value in c.x: ${c.x}";
+ dynamic result = c.f().call().call();
+ if(!42.==(result))
+ throw "Unexpected value from c.f()()(): ${result}";
+}
« no previous file with comments | « pkg/kernel/testcases/closures/capture_this.dart ('k') | pkg/kernel/testcases/closures/catch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698