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

Side by Side Diff: lib/compiler/implementation/tools/mini_parser.dart

Issue 10964009: Fix mini-parser to get Uint8List from scalarlist library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | « no previous file | no next file » | 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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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('parser'); 5 #library('parser');
6 6
7 #import('dart:io'); 7 #import('dart:io');
8 #import('dart:scalarlist');
8 9
9 #import('../../../utf/utf.dart'); 10 #import('../../../utf/utf.dart');
10 11
11 #import('../elements/elements.dart'); 12 #import('../elements/elements.dart');
12 #import('../scanner/scanner_implementation.dart'); 13 #import('../scanner/scanner_implementation.dart');
13 #import('../scanner/scannerlib.dart'); 14 #import('../scanner/scannerlib.dart');
14 #import('../tree/tree.dart'); 15 #import('../tree/tree.dart');
15 #import('../util/characters.dart'); 16 #import('../util/characters.dart');
16 #import('../source_file.dart'); 17 #import('../source_file.dart');
17 #import('../ssa/ssa.dart'); 18 #import('../ssa/ssa.dart');
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 set text(String newText) { 310 set text(String newText) {
310 throw "not supported"; 311 throw "not supported";
311 } 312 }
312 } 313 }
313 314
314 class Mock { 315 class Mock {
315 const Mock(); 316 const Mock();
316 bool get useColors => true; 317 bool get useColors => true;
317 internalError(message) { throw message.toString(); } 318 internalError(message) { throw message.toString(); }
318 } 319 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698