OLD | NEW |
| (Empty) |
1 /** | |
2 * This package contains some simple debugging tools. | |
3 */ | |
4 library debug; | |
5 | |
6 import 'package:petitparser/petitparser.dart'; | |
7 import 'package:petitparser/reflection.dart'; | |
8 | |
9 part 'src/debug/continuation.dart'; | |
10 part 'src/debug/profile.dart'; | |
11 part 'src/debug/progress.dart'; | |
12 part 'src/debug/trace.dart'; | |
13 | |
14 typedef void OutputHandler(Object object); | |
15 | |
16 String _repeat(int count, String value) { | |
17 var result = new StringBuffer(); | |
18 for (var i = 0; i < count; i++) { | |
19 result.write(value); | |
20 } | |
21 return result.toString(); | |
22 } | |
OLD | NEW |