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

Unified Diff: pkg/front_end/testcases/void-methods.dart.direct.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.direct.expect
diff --git a/pkg/front_end/testcases/void-methods.dart.direct.expect b/pkg/front_end/testcases/void-methods.dart.direct.expect
index 6ae6f5c2059fc2bd523c4023fee4afeeebd7614e..044feab0e40ee9020fd37436ca09927dc8ab44f6 100644
--- a/pkg/front_end/testcases/void-methods.dart.direct.expect
+++ b/pkg/front_end/testcases/void-methods.dart.direct.expect
@@ -8,9 +8,9 @@ class Foo extends core::Object {
: super core::Object::•()
;
set first(dynamic x) → dynamic
- return let final dynamic #t1 = this.list in let final dynamic #t2 = 0 in let final dynamic #t3 = x in let final dynamic #t4 = #t1.[]=(#t2, #t3) in #t3;
+ this.list.[]=(0, x);
operator []=(dynamic x, dynamic y) → dynamic
- return let final dynamic #t5 = this.list in let final dynamic #t6 = x in let final dynamic #t7 = y in let final dynamic #t8 = #t5.[]=(#t6, #t7) in #t7;
+ this.list.[]=(x, y);
method clear() → void
return this.list.clear();
}

Powered by Google App Engine
This is Rietveld 408576698