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

Side by Side Diff: tests/lib/mirrors/regress_14304_test.dart

Issue 2727323002: Add @MirrorsUsed annotations to speed up tests. (Closed)
Patch Set: Minor fixes. Created 3 years, 9 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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 // Regression test for Issue 14304. 5 // Regression test for Issue 14304.
6 6
7 library lib;
8
9 @MirrorsUsed(targets: "lib")
7 import "dart:mirrors"; 10 import "dart:mirrors";
8 import "package:expect/expect.dart"; 11 import "package:expect/expect.dart";
9 12
10 class A<T> { 13 class A<T> {
11 T m() {} 14 T m() {}
12 } 15 }
13 16
14 main() { 17 main() {
15 ClassMirror a = reflectClass(A); 18 ClassMirror a = reflectClass(A);
16 TypeVariableMirror t = a.typeVariables[0]; 19 TypeVariableMirror t = a.typeVariables[0];
17 MethodMirror m = a.declarations[#m]; 20 MethodMirror m = a.declarations[#m];
18 21
19 Expect.equals(t, m.returnType); 22 Expect.equals(t, m.returnType);
20 } 23 }
OLDNEW
« no previous file with comments | « tests/lib/mirrors/reflectively_instantiate_uninstantiated_class_test.dart ('k') | tests/lib/mirrors/regress_16321_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698