| 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 // No library declaration. |
| 6 |
| 5 import 'dart:mirrors'; | 7 import 'dart:mirrors'; |
| 6 | 8 |
| 7 import 'stringify.dart'; | 9 import 'package:expect/expect.dart'; |
| 8 | 10 |
| 9 class Foo { | 11 class C {} |
| 10 } | |
| 11 | 12 |
| 12 main() { | 13 main() { |
| 13 expect('[]', reflectClass(Foo).metadata); | 14 Expect.equals(const Symbol(""), reflectClass(C).owner.simpleName); |
| 14 } | 15 } |
| OLD | NEW |