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

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

Issue 2865403007: Get rid of promotedType=none annotations (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/refine_binary_expression_type_type_parameter_t_double.dart
diff --git a/pkg/front_end/testcases/inference/refine_binary_expression_type_type_parameter_t_double.dart b/pkg/front_end/testcases/inference/refine_binary_expression_type_type_parameter_t_double.dart
index f262d3d4c44273c6276103ae4e5d76da09991345..d06feed4e78f52e963f5c002a799a44a8179c57c 100644
--- a/pkg/front_end/testcases/inference/refine_binary_expression_type_type_parameter_t_double.dart
+++ b/pkg/front_end/testcases/inference/refine_binary_expression_type_type_parameter_t_double.dart
@@ -9,10 +9,10 @@ class C<T extends num> {
T a;
void op(double b) {
- double r1 = a /*@target=num::+*/ + /*@promotedType=none*/ b;
- double r2 = a /*@target=num::-*/ - /*@promotedType=none*/ b;
- double r3 = a /*@target=num::**/ * /*@promotedType=none*/ b;
- double r4 = a /*@target=num::/ */ / /*@promotedType=none*/ b;
+ double r1 = a /*@target=num::+*/ + b;
+ double r2 = a /*@target=num::-*/ - b;
+ double r3 = a /*@target=num::**/ * b;
+ double r4 = a /*@target=num::/ */ / b;
}
}

Powered by Google App Engine
This is Rietveld 408576698