| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 library test.enums; | 5 library test.enums; |
| 6 | 6 |
| 7 import 'dart:mirrors'; | 7 import 'dart:mirrors'; |
| 8 import 'package:expect/expect.dart'; | 8 import 'package:expect/expect.dart'; |
| 9 import 'stringify.dart'; | 9 import 'stringify.dart'; |
| 10 | 10 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'Variable(s(values) in s(Suite), static, final)', | 56 'Variable(s(values) in s(Suite), static, final)', |
| 57 'Method(s(hashCode) in s(Suite), getter)', | 57 'Method(s(hashCode) in s(Suite), getter)', |
| 58 'Method(s(toString) in s(Suite))' | 58 'Method(s(toString) in s(Suite))' |
| 59 ], | 59 ], |
| 60 reflectClass(Suite) | 60 reflectClass(Suite) |
| 61 .declarations | 61 .declarations |
| 62 .values | 62 .values |
| 63 .where((d) => !d.isPrivate) | 63 .where((d) => !d.isPrivate) |
| 64 .map(stringify)); | 64 .map(stringify)); |
| 65 } | 65 } |
| OLD | NEW |