OLD | NEW |
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 import "dart:mirrors"; | 7 import "dart:mirrors"; |
8 import "package:expect/expect.dart"; | 8 import "package:expect/expect.dart"; |
9 | 9 |
10 class A<T> { | 10 class A<T> { |
11 T m() {} | 11 T m() {} |
12 } | 12 } |
13 | 13 |
14 main() { | 14 main() { |
15 ClassMirror a = reflectClass(A); | 15 ClassMirror a = reflectClass(A); |
16 TypeVariableMirror t = a.typeVariables[0]; | 16 TypeVariableMirror t = a.typeVariables[0]; |
17 MethodMirror m = a.methods.values.single; | 17 MethodMirror m = a.declarations[#m]; |
18 | 18 |
19 Expect.equals(t, m.returnType); | 19 Expect.equals(t, m.returnType); |
20 } | 20 } |
OLD | NEW |