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

Unified Diff: pkg/front_end/testcases/inference/infer_assign_to_index_super_upwards.dart.outline.expect

Issue 2941813002: Fix fasta testcase to avoid a super call to an abstract method. (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/front_end/testcases/inference/infer_assign_to_index_super_upwards.dart.outline.expect
diff --git a/pkg/front_end/testcases/inference/infer_assign_to_index_super_upwards.dart.outline.expect b/pkg/front_end/testcases/inference/infer_assign_to_index_super_upwards.dart.outline.expect
index 9dd5ea61abc9240f72342c16fb999b0d787be1d1..15c3a88c55d25d9732a0aa69a7fed95d5d6229e3 100644
--- a/pkg/front_end/testcases/inference/infer_assign_to_index_super_upwards.dart.outline.expect
+++ b/pkg/front_end/testcases/inference/infer_assign_to_index_super_upwards.dart.outline.expect
@@ -5,8 +5,12 @@ import "dart:core" as core;
abstract class Base<T extends core::Object, U extends core::Object> extends core::Object {
constructor •() → void
;
- abstract operator [](core::String s) → self::Base::T;
- abstract operator []=(core::String s, self::Base::U v) → void;
+ operator [](core::String s) → self::Base::T
+ ;
+ operator []=(core::String s, self::Base::U v) → void
+ ;
+ abstract method getValue(core::String s) → self::Base::T;
+ abstract method setValue(core::String s, self::Base::U v) → void;
}
abstract class Test1 extends self::Base<core::int, core::int> {
constructor •() → void

Powered by Google App Engine
This is Rietveld 408576698