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

Side by Side Diff: pkg/front_end/testcases/runtime_checks/covariant_generic_parameter_tear_off.dart

Issue 3010613003: Simplify annotations in runtime check tests. (Closed)
Patch Set: Address code review comment Created 3 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /*@testedFeatures=checks*/ 5 /*@testedFeatures=checks*/
6 library test; 6 library test;
7 7
8 typedef void F<T>(T x); 8 typedef void F<T>(T x);
9 9
10 typedef U G<T, U>(T x); 10 typedef U G<T, U>(T x);
11 11
12 class C<T> { 12 class C<T> {
13 void f1(T /*@checkFormal=semiSafe*/ x) {} 13 void f1(T /*@checkFormal=semiSafe*/ /*@checkInterface=semiTyped*/ x) {}
14 T f2(List<T> /*@checkFormal=semiSafe*/ x) => x.first; 14 T f2(List<T> /*@checkFormal=semiSafe*/ /*@checkInterface=semiTyped*/ x) =>
15 x.first;
15 } 16 }
16 17
17 F<num> g1(C<num> c) { 18 F<num> g1(C<num> c) {
18 return c.f1; 19 return c.f1;
19 } 20 }
20 21
21 void g2(C<int> c, Object x) { 22 void g2(C<int> c, Object x) {
22 F<Object> f = g1(c) as F<Object>; 23 F<Object> f = g1(c) as F<Object>;
23 f /*@checkCall=interface(semiTyped:0)*/ (x); 24 f /*@callKind=closure*/ (x);
24 } 25 }
25 26
26 G<List<num>, num> g3(C<num> c) { 27 G<List<num>, num> g3(C<num> c) {
27 return c.f2; 28 return c.f2;
28 } 29 }
29 30
30 void test() { 31 void test() {
31 var x = g1(new C<int>()); 32 var x = g1(new C<int>());
32 x /*@checkCall=interface(semiTyped:0)*/ (1.5); 33 x /*@callKind=closure*/ (1.5);
33 g3(new C<int>()); 34 g3(new C<int>());
34 } 35 }
35 36
36 main() {} 37 main() {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698