Index: pkg/front_end/testcases/inference/generic_methods_downwards_inference_fold.dart |
diff --git a/pkg/front_end/testcases/inference/generic_methods_downwards_inference_fold.dart b/pkg/front_end/testcases/inference/generic_methods_downwards_inference_fold.dart |
index 84d757ce8b6ffcc9eeb92d4d6a107b6f758f3050..b90360cb14879f7a81177b257213f645d00dfbf6 100644 |
--- a/pkg/front_end/testcases/inference/generic_methods_downwards_inference_fold.dart |
+++ b/pkg/front_end/testcases/inference/generic_methods_downwards_inference_fold.dart |
@@ -22,14 +22,15 @@ void main() { |
void functionExpressionInvocation() { |
List<int> o; |
- int y = (o.fold) /*@typeArgs=int*/ ( |
+ int y = (o. /*@target=List::fold*/ fold) /*@typeArgs=int*/ ( |
0, |
/*@returnType=int*/ (/*@type=int*/ x, |
/*@type=int*/ y) => |
x /*@target=num::+*/ + y); |
- var /*@type=dynamic*/ z = (o.fold) /*@typeArgs=dynamic*/ ( |
- 0, |
- /*@returnType=dynamic*/ (/*@type=dynamic*/ x, |
- /*@type=int*/ y) => /*info:DYNAMIC_INVOKE*/ x + y); |
+ var /*@type=dynamic*/ z = |
+ (o. /*@target=List::fold*/ fold) /*@typeArgs=dynamic*/ ( |
+ 0, |
+ /*@returnType=dynamic*/ (/*@type=dynamic*/ x, |
+ /*@type=int*/ y) => /*info:DYNAMIC_INVOKE*/ x + y); |
y = /*info:DYNAMIC_CAST*/ z; |
} |