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

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

Issue 2874033003: Set MethodInvocation.interfaceTarget during type inference. (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/map_literals_top_level.dart
diff --git a/pkg/front_end/testcases/inference/map_literals_top_level.dart b/pkg/front_end/testcases/inference/map_literals_top_level.dart
index f055c9f5a3cc9210669ecaafcb841ca3d4a6b8a0..1cbae0cba3d450bf64f57e111c6abf216f960ef4 100644
--- a/pkg/front_end/testcases/inference/map_literals_top_level.dart
+++ b/pkg/front_end/testcases/inference/map_literals_top_level.dart
@@ -10,10 +10,10 @@ var /*@topType=Map<int, String>*/ x1 = /*@typeArgs=int, String*/ {
2: 'y'
};
test1() {
- x1[3] = 'z';
- x1[/*error:ARGUMENT_TYPE_NOT_ASSIGNABLE*/ 'hi'] = 'w';
- x1[/*error:ARGUMENT_TYPE_NOT_ASSIGNABLE*/ 4.0] = 'u';
- x1[3] = /*error:INVALID_ASSIGNMENT*/ 42;
+ x1 /*@target=Map::[]=*/ [3] = 'z';
+ x1 /*@target=Map::[]=*/ [/*error:ARGUMENT_TYPE_NOT_ASSIGNABLE*/ 'hi'] = 'w';
+ x1 /*@target=Map::[]=*/ [/*error:ARGUMENT_TYPE_NOT_ASSIGNABLE*/ 4.0] = 'u';
+ x1 /*@target=Map::[]=*/ [3] = /*error:INVALID_ASSIGNMENT*/ 42;
Map<num, String> y = x1;
}
@@ -23,11 +23,11 @@ var /*@topType=Map<num, Pattern>*/ x2 = /*@typeArgs=num, Pattern*/ {
3.0: new RegExp('.')
};
test2() {
- x2[3] = 'z';
- x2[/*error:ARGUMENT_TYPE_NOT_ASSIGNABLE*/ 'hi'] = 'w';
- x2[4.0] = 'u';
- x2[3] = /*error:INVALID_ASSIGNMENT*/ 42;
+ x2 /*@target=Map::[]=*/ [3] = 'z';
+ x2 /*@target=Map::[]=*/ [/*error:ARGUMENT_TYPE_NOT_ASSIGNABLE*/ 'hi'] = 'w';
+ x2 /*@target=Map::[]=*/ [4.0] = 'u';
+ x2 /*@target=Map::[]=*/ [3] = /*error:INVALID_ASSIGNMENT*/ 42;
Pattern p = null;
- x2[2] = /*@promotedType=none*/ p;
+ x2 /*@target=Map::[]=*/ [2] = /*@promotedType=none*/ p;
Map<int, String> y = /*info:ASSIGNMENT_CAST*/ x2;
}

Powered by Google App Engine
This is Rietveld 408576698