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

Unified Diff: pkg/front_end/testcases/inference/constructors_infer_from_arguments_named.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_named.dart
diff --git a/pkg/front_end/testcases/inference/constructors_infer_from_arguments_named.dart b/pkg/front_end/testcases/inference/constructors_infer_from_arguments_named.dart
index 7e754b880b4d4bf7e20cd2b3d2600b1f5941c63c..a8fff01c32001edf0ef226996d59513917306b7c 100644
--- a/pkg/front_end/testcases/inference/constructors_infer_from_arguments_named.dart
+++ b/pkg/front_end/testcases/inference/constructors_infer_from_arguments_named.dart
@@ -11,5 +11,5 @@ class C<T> {
}
main() {
- var /*@type=C<int>*/ x = /*@typeArgs=int*/ new C.named(<int>[]);
+ var /*@type=C<int>*/ x = new /*@typeArgs=int*/ C.named(<int>[]);
}

Powered by Google App Engine
This is Rietveld 408576698