OLD | NEW |
1 /** | 1 /// This package contains tools to reflect on and transform parsers. |
2 * This package contains tools to reflect on and transform parsers. | 2 library petitparser.reflection; |
3 */ | |
4 library reflection; | |
5 | 3 |
6 import 'dart:collection'; | 4 import 'dart:collection'; |
7 | 5 |
8 import 'package:petitparser/petitparser.dart'; | 6 import 'package:petitparser/petitparser.dart'; |
9 | 7 |
10 part 'src/reflection/iterable.dart'; | 8 part 'src/reflection/iterable.dart'; |
11 part 'src/reflection/optimize.dart'; | 9 part 'src/reflection/optimize.dart'; |
12 part 'src/reflection/transform.dart'; | 10 part 'src/reflection/transform.dart'; |
OLD | NEW |