Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(784)

Side by Side Diff: packages/petitparser/lib/debug.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « packages/petitparser/lib/dart.dart ('k') | packages/petitparser/lib/json.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /// This package contains some simple debugging tools.
2 * This package contains some simple debugging tools. 2 library petitparser.debug;
3 */
4 library debug;
5 3
6 import 'package:petitparser/petitparser.dart'; 4 import 'package:petitparser/petitparser.dart';
7 import 'package:petitparser/reflection.dart'; 5 import 'package:petitparser/reflection.dart';
8 6
9 part 'src/debug/continuation.dart'; 7 part 'src/debug/continuation.dart';
10 part 'src/debug/profile.dart'; 8 part 'src/debug/profile.dart';
11 part 'src/debug/progress.dart'; 9 part 'src/debug/progress.dart';
12 part 'src/debug/trace.dart'; 10 part 'src/debug/trace.dart';
13 11
14 typedef void OutputHandler(Object object); 12 typedef void OutputHandler(Object object);
15 13
16 String _repeat(int count, String value) { 14 String _repeat(int count, String value) {
17 var result = new StringBuffer(); 15 var result = new StringBuffer();
18 for (var i = 0; i < count; i++) { 16 for (var i = 0; i < count; i++) {
19 result.write(value); 17 result.write(value);
20 } 18 }
21 return result.toString(); 19 return result.toString();
22 } 20 }
OLDNEW
« no previous file with comments | « packages/petitparser/lib/dart.dart ('k') | packages/petitparser/lib/json.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698