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

Side by Side Diff: packages/html/lib/src/utils.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/html/lib/src/treebuilder.dart ('k') | packages/html/pubspec.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /// Misc things that were useful when porting the code from Python. 1 /// Misc things that were useful when porting the code from Python.
2 library utils; 2 library utils;
3 3
4 import 'constants.dart'; 4 import 'constants.dart';
5 5
6 typedef bool Predicate(); 6 typedef bool Predicate();
7 7
8 class Pair<F, S> { 8 class Pair<F, S> {
9 final F first; 9 final F first;
10 final S second; 10 final S second;
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 114
115 last = match + 1; 115 last = match + 1;
116 } 116 }
117 117
118 result.write(format.substring(last, format.length)); 118 result.write(format.substring(last, format.length));
119 format = result.toString(); 119 format = result.toString();
120 }); 120 });
121 121
122 return format; 122 return format;
123 } 123 }
OLDNEW
« no previous file with comments | « packages/html/lib/src/treebuilder.dart ('k') | packages/html/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698