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

Unified Diff: pkg/front_end/testcases/inference/unsafe_block_closure_inference_constructor_call_implicit_type_param.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
« no previous file with comments | « pkg/front_end/testcases/inference/local_constructor_from_arguments.dart ('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/unsafe_block_closure_inference_constructor_call_implicit_type_param.dart
diff --git a/pkg/front_end/testcases/inference/unsafe_block_closure_inference_constructor_call_implicit_type_param.dart b/pkg/front_end/testcases/inference/unsafe_block_closure_inference_constructor_call_implicit_type_param.dart
index e82815c7e212c1effa7f3e0cc3c4fb8ff843a0c4..4a18501ea9df2609a8c417452d6b81736df5a3c9 100644
--- a/pkg/front_end/testcases/inference/unsafe_block_closure_inference_constructor_call_implicit_type_param.dart
+++ b/pkg/front_end/testcases/inference/unsafe_block_closure_inference_constructor_call_implicit_type_param.dart
@@ -10,7 +10,7 @@ class C<T> {
}
main() {
- var /*@type=C<int>*/ v = /*@typeArgs=int*/ new C(
+ var /*@type=C<int>*/ v = new /*@typeArgs=int*/ C(
/*@returnType=int*/ () {
return 1;
});
« no previous file with comments | « pkg/front_end/testcases/inference/local_constructor_from_arguments.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698