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

Side by Side Diff: utils/peg/pegparser.dart

Issue 12295014: Remove deprecated Strings class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « utils/lib/file_system.dart ('k') | utils/testrunner/pipeline_utils.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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library Peg Parser; 5 library Peg Parser;
6 6
7 /* 7 /*
8 * The following functions are combinators for building Rules. 8 * The following functions are combinators for building Rules.
9 * 9 *
10 * A rule is one of the following 10 * A rule is one of the following
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 var message = 'unexpected error'; 268 var message = 'unexpected error';
269 if (!state.max_rule.isEmpty) { 269 if (!state.max_rule.isEmpty) {
270 var s = new Set(); 270 var s = new Set();
271 for (var rule in state.max_rule) 271 for (var rule in state.max_rule)
272 s.add(rule.description()); 272 s.add(rule.description());
273 var tokens = new List<String>.from(s); 273 var tokens = new List<String>.from(s);
274 tokens.sort((a, b) => 274 tokens.sort((a, b) =>
275 a.startsWith("'") == b.startsWith("'") 275 a.startsWith("'") == b.startsWith("'")
276 ? a.compareTo(b) 276 ? a.compareTo(b)
277 : a.startsWith("'") ? +1 : -1); 277 : a.startsWith("'") ? +1 : -1);
278 var expected = Strings.join(tokens, ' or '); 278 var expected = tokens.join(' or ');
279 var found = state.max_pos == state._end ? 'end of file' 279 var found = state.max_pos == state._end ? 'end of file'
280 : "'${state._text[state.max_pos]}'"; 280 : "'${state._text[state.max_pos]}'";
281 message = 'Expected $expected but found $found'; 281 message = 'Expected $expected but found $found';
282 } 282 }
283 int start = state.max_pos; 283 int start = state.max_pos;
284 int end = start; 284 int end = start;
285 while (start >= 1 && state._text[start - 1] != '\n') --start; 285 while (start >= 1 && state._text[start - 1] != '\n') --start;
286 while (end < state._text.length && state._text[end] != '\n') ++end; 286 while (end < state._text.length && state._text[end] != '\n') ++end;
287 var line = state._text.substring(start, end); 287 var line = state._text.substring(start, end);
288 var indicator = ''; 288 var indicator = '';
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
849 add(s); 849 add(s);
850 add(t); 850 add(t);
851 add(u); 851 add(u);
852 add(v); 852 add(v);
853 add(w); 853 add(w);
854 add(x); 854 add(x);
855 add(y); 855 add(y);
856 add(z); 856 add(z);
857 return list; 857 return list;
858 } 858 }
OLDNEW
« no previous file with comments | « utils/lib/file_system.dart ('k') | utils/testrunner/pipeline_utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698