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

Unified Diff: utils/peg/pegparser.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « utils/lib/file_system_vm.dart ('k') | utils/pub/command_install.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/peg/pegparser.dart
diff --git a/utils/peg/pegparser.dart b/utils/peg/pegparser.dart
index dd49d0aac22579cb4c31ef7b16b0799b74d7868c..13336825e4ae9471b3603830b2d49249ff32b997 100644
--- a/utils/peg/pegparser.dart
+++ b/utils/peg/pegparser.dart
@@ -69,7 +69,7 @@ _Rule CHAR([characters]) {
if (lo == hi)
return CHARCODE(lo);
int len = hi - lo + 1;
- var flags = new List<bool>(len);
+ var flags = new List<bool>.fixedLength(len);
for (int i = 0; i < len; ++i)
flags[i] = false;
for (int code in codes)
« no previous file with comments | « utils/lib/file_system_vm.dart ('k') | utils/pub/command_install.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698