| OLD | NEW |
| 1 name: reflectable | 1 name: reflectable |
| 2 description: > | 2 description: > |
| 3 This package allows programmers to reduce certain usages of dynamic | 3 This package allows programmers to reduce certain usages of dynamic |
| 4 reflection to a transformer generated specialization with the same | 4 reflection to a transformer generated specialization with the same |
| 5 behavior. The generated code does not use dynamic reflection and thus | 5 behavior. The generated code does not use dynamic reflection and thus |
| 6 improves the performance of (esp. dart2js) generated code. | 6 improves the performance of (esp. dart2js) generated code. |
| 7 version: 0.5.2 | 7 version: 0.5.2 |
| 8 author: The Dart Team <dart@google.com> | 8 author: The Dart Team <dart@google.com> |
| 9 homepage: https://www.github.com/dart-lang/reflectable | 9 homepage: https://www.github.com/dart-lang/reflectable |
| 10 environment: | 10 environment: |
| 11 sdk: '>=1.12.0 <2.0.0' | 11 sdk: '>=1.12.0 <2.0.0' |
| 12 dependencies: | 12 dependencies: |
| 13 analyzer: 0.27.1 # Temporary constraint: avoid issue with 0.27.1+1. | 13 analyzer: 0.27.1 # Temporary constraint: avoid issue with 0.27.1+1. |
| 14 barback: ^0.15.0 | 14 barback: ^0.15.0 |
| 15 code_transformers: ^0.4.0 | 15 code_transformers: ^0.4.0 |
| 16 dart_style: ^0.2.0 | 16 dart_style: ^0.2.0 |
| 17 glob: ^1.1.0 |
| 17 logging: ^0.11.0 | 18 logging: ^0.11.0 |
| 18 dev_dependencies: | 19 dev_dependencies: |
| 19 unittest: ^0.11.0 | 20 unittest: ^0.11.0 |
| 20 transformers: | 21 transformers: |
| 21 - reflectable/src/transform_import: | 22 - reflectable/src/transform_import: |
| 22 $include: lib/reflectable.dart | 23 $include: lib/reflectable.dart |
| 23 - $dart2js: | 24 - $dart2js: |
| 24 commandLineOptions: [--show-package-warnings] | 25 commandLineOptions: [--show-package-warnings] |
| 25 # We do not want to compile anything in this package. | 26 # We do not want to compile anything in this package. |
| 26 $include: [] | 27 $include: [] |
| OLD | NEW |