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

Unified Diff: pkg/front_end/testcases/inference/downwards_inference_on_instance_creations_infer_downwards.dart.strong.expect

Issue 2908453002: Infer the types of initializing formals from the corresponding fields. (Closed)
Patch Set: Created 3 years, 7 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/downwards_inference_on_instance_creations_infer_downwards.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/downwards_inference_on_instance_creations_infer_downwards.dart.strong.expect b/pkg/front_end/testcases/inference/downwards_inference_on_instance_creations_infer_downwards.dart.strong.expect
index 147c9f7974f247ab5b50826c8f57cc71345e1c51..ca4dd1c8a0aa3158d18caa5f4373b4e82ada4d74 100644
--- a/pkg/front_end/testcases/inference/downwards_inference_on_instance_creations_infer_downwards.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/downwards_inference_on_instance_creations_infer_downwards.dart.strong.expect
@@ -5,10 +5,10 @@ import "dart:core" as core;
class A<S extends core::Object, T extends core::Object> extends core::Object {
field self::A::S x;
field self::A::T y;
- constructor •(dynamic x, dynamic y) → void
+ constructor •(self::A::S x, self::A::T y) → void
: self::A::x = x, self::A::y = y, super core::Object::•()
;
- constructor named(dynamic x, dynamic y) → void
+ constructor named(self::A::S x, self::A::T y) → void
: self::A::x = x, self::A::y = y, super core::Object::•()
;
}

Powered by Google App Engine
This is Rietveld 408576698