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

Unified Diff: pkg/kernel/testcases/closures/field.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/field.dart ('k') | pkg/kernel/testcases/closures/for_in_closure.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/testcases/closures/field.dart.expect
diff --git a/pkg/kernel/testcases/closures/field.dart.expect b/pkg/kernel/testcases/closures/field.dart.expect
new file mode 100644
index 0000000000000000000000000000000000000000..3cfc055f185346351b09ece5c00515934b547a31
--- /dev/null
+++ b/pkg/kernel/testcases/closures/field.dart.expect
@@ -0,0 +1,82 @@
+library;
+import self as self;
+import "dart:core" as core;
+import "dart:mock" as mock;
+
+class C<T extends core::Object> extends core::Object {
+ field dynamic v = new self::Closure#C#v#function::•<self::C::T>(null);
+ final field dynamic y = new self::Closure#C#y#function::•(null);
+ static final field dynamic z = new self::Closure#C#z#function::•(null);
+ constructor •() → void
+ : super core::Object::•()
+ ;
+}
+class Closure#C#v#function<T extends core::Object> 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#v#function::context = context
+ ;
+ method call(dynamic x) → dynamic {
+ "This is a temporary solution. In the VM, this will become an additional parameter.";
+ final mock::Context #contextParameter = this.{self::Closure#C#v#function::context};
+ return x is self::Closure#C#v#function::T;
+ }
+}
+class Closure#C#y#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#y#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#y#function::context};
+ return "y";
+ }
+}
+class Closure#C#z#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#z#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#z#function::context};
+ return "z";
+ }
+}
+class Closure#x#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#x#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#x#function::context};
+ return "x";
+ }
+}
+static field dynamic x = new self::Closure#x#function::•(null);
+static method main() → dynamic {
+ if(!new self::C::•<core::String>().v(""))
+ throw "C<String>.v false on String";
+ if(new self::C::•<core::String>().v(0))
+ throw "C<String>.v true on int";
+ if(new self::C::•<core::String>().v(null))
+ throw "C<String>.v true on null";
+ if(new self::C::•<core::int>().v(""))
+ throw "C<int>.v true on String";
+ if(!new self::C::•<core::int>().v(0))
+ throw "C<int>.v false on int";
+ if(new self::C::•<core::int>().v(null))
+ throw "C<int>.v true on null";
+ if(!"x".==(self::x.call()))
+ throw "x";
+ if(!"y".==(new self::C::•<core::String>().y()))
+ throw "y";
+ if(!"z".==(self::C::z.call()))
+ throw "z";
+}
« no previous file with comments | « pkg/kernel/testcases/closures/field.dart ('k') | pkg/kernel/testcases/closures/for_in_closure.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698