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

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

Issue 2905163002: Perform type inference on redirecting initializers (`C() : this(...);`). (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
« no previous file with comments | « pkg/front_end/test/fasta/strong.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/testcases/inference/constructors_infer_from_arguments_redirecting.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/constructors_infer_from_arguments_redirecting.dart.strong.expect b/pkg/front_end/testcases/inference/constructors_infer_from_arguments_redirecting.dart.strong.expect
index e3f0a55389540b97861f74a671724e6c824fcc79..cddfc1913b0d6f178a05a31f0b69e999fc7ae67d 100644
--- a/pkg/front_end/testcases/inference/constructors_infer_from_arguments_redirecting.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/constructors_infer_from_arguments_redirecting.dart.strong.expect
@@ -4,11 +4,11 @@ import "dart:core" as core;
class C<T extends core::Object> extends core::Object {
field self::C::T t;
- constructor •(dynamic t) → void
+ constructor •(self::C::T t) → void
: self::C::t = t, super core::Object::•()
;
constructor named(core::List<self::C::T> t) → void
- : this self::C::•(t.[](0))
+ : this self::C::•(t.{core::List::[]}(0))
;
}
static method main() → dynamic {
« no previous file with comments | « pkg/front_end/test/fasta/strong.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698