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

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

Issue 2935223003: Update expectations for closure conversion tests (Closed)
Patch Set: Created 3 years, 6 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/closure_in_initializer.dart.expect
diff --git a/pkg/kernel/testcases/closures/closure_in_initializer.dart.expect b/pkg/kernel/testcases/closures/closure_in_initializer.dart.expect
index 65b8587ded568e1fdbec433ea5825e6c1aa3b0cf..4dd621d48b6c15208f1801a1e61b26380f8abbaf 100644
--- a/pkg/kernel/testcases/closures/closure_in_initializer.dart.expect
+++ b/pkg/kernel/testcases/closures/closure_in_initializer.dart.expect
@@ -13,7 +13,7 @@ class C extends core::Object {
}
static method main() → dynamic {
core::print(0);
- dynamic c = new self::C::foo(MakeClosure<() → dynamic>(self::closure#main#function, null));
+ dynamic c = new self::C::foo(MakeClosure<() → void>(self::closure#main#function, null));
core::print(2);
c.t();
core::print(3);
@@ -21,6 +21,6 @@ static method main() → dynamic {
static method closure#C#foo#function(Vector #contextParameter) → dynamic {
return (#contextParameter[1]).call();
}
-static method closure#main#function(Vector #contextParameter) → dynamic {
+static method closure#main#function(Vector #contextParameter) → void {
return core::print("hest");
}

Powered by Google App Engine
This is Rietveld 408576698