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

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

Issue 2867113002: Update expectations for instance creations to match front_end. (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/constructors_infer_from_arguments_redirecting.dart
diff --git a/pkg/front_end/testcases/inference/constructors_infer_from_arguments_redirecting.dart b/pkg/front_end/testcases/inference/constructors_infer_from_arguments_redirecting.dart
index 777e40d05a43dc4457e6313e3fc5af9b2394c42d..94a2c247f7acf6071a21c1256b96dd029fc149ae 100644
--- a/pkg/front_end/testcases/inference/constructors_infer_from_arguments_redirecting.dart
+++ b/pkg/front_end/testcases/inference/constructors_infer_from_arguments_redirecting.dart
@@ -12,5 +12,5 @@ class C<T> {
}
main() {
- var /*@type=C<int>*/ x = /*@typeArgs=int*/ new C.named(<int>[42]);
+ var /*@type=C<int>*/ x = new /*@typeArgs=int*/ C.named(<int>[42]);
}

Powered by Google App Engine
This is Rietveld 408576698