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

Unified Diff: pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_no_bound.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/instantiate_to_bounds_invoke_constructor_no_bound.dart
diff --git a/pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_no_bound.dart b/pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_no_bound.dart
index e07393e0d34775d97feaa827a14c8db1ec3f5a1a..05e0abd2222e856499545b951fbf457e7fe1d9c8 100644
--- a/pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_no_bound.dart
+++ b/pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_no_bound.dart
@@ -8,5 +8,5 @@ library test;
class C<T> {}
main() {
- var /*@type=C<dynamic>*/ v = /*@typeArgs=dynamic*/ new C();
+ var /*@type=C<dynamic>*/ v = new /*@typeArgs=dynamic*/ C();
}

Powered by Google App Engine
This is Rietveld 408576698