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

Unified Diff: pkg/front_end/testcases/void-methods.dart.strong.expect

Issue 2981873002: Revert unrelated expectation changes. (Closed)
Patch Set: Update tests/compiler/dart2js/kernel/visitor_test.dart Created 3 years, 5 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/front_end/testcases/void-methods.dart.strong.expect
diff --git a/pkg/front_end/testcases/void-methods.dart.strong.expect b/pkg/front_end/testcases/void-methods.dart.strong.expect
index e130f032401334cc945b7733bdca506d067f9290..683d3ae30cc2d06d96920f74bf6c4e98157d3be1 100644
--- a/pkg/front_end/testcases/void-methods.dart.strong.expect
+++ b/pkg/front_end/testcases/void-methods.dart.strong.expect
@@ -8,9 +8,9 @@ class Foo extends core::Object {
: super core::Object::•()
;
set first(dynamic x) → void
- return let final dynamic #t1 = this.{self::Foo::list} in let final dynamic #t2 = 0 in let final dynamic #t3 = x in let final dynamic #t4 = #t1.{core::List::[]=}(#t2, #t3) in #t3;
- operator []=(dynamic x, dynamic y) → dynamic
- return let final dynamic #t5 = this.{self::Foo::list} in let final dynamic #t6 = x in let final dynamic #t7 = y in let final dynamic #t8 = #t5.{core::List::[]=}(#t6, #t7) in #t7;
+ this.list.[]=(0, x);
+ operator []=(dynamic x, dynamic y) → void
+ this.list.[]=(x, y);
method clear() → void
return this.{self::Foo::list}.{core::List::clear}();
}

Powered by Google App Engine
This is Rietveld 408576698