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

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

Issue 9873021: Move frog/leg to lib/compiler/implementation. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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
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 8
9 #import('../../../lib/utf/utf.dart'); 9 #import('../../../utf/utf.dart');
10 10
11 #import('../elements/elements.dart'); 11 #import('../elements/elements.dart');
12 #import('../scanner/scanner_implementation.dart'); 12 #import('../scanner/scanner_implementation.dart');
13 #import('../scanner/scannerlib.dart'); 13 #import('../scanner/scannerlib.dart');
14 #import('../tree/tree.dart'); 14 #import('../tree/tree.dart');
15 #import('../util/characters.dart'); 15 #import('../util/characters.dart');
16 16
17 #source('../diagnostic_listener.dart'); 17 #source('../diagnostic_listener.dart');
18 #source('../../source.dart'); 18 #source('../../source.dart');
19 #source('../scanner/byte_array_scanner.dart'); 19 #source('../scanner/byte_array_scanner.dart');
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 String _GREEN_COLOR = '\u001b[32m'; 324 String _GREEN_COLOR = '\u001b[32m';
325 String _RED_COLOR = '\u001b[31m'; 325 String _RED_COLOR = '\u001b[31m';
326 String _MAGENTA_COLOR = '\u001b[35m'; 326 String _MAGENTA_COLOR = '\u001b[35m';
327 String _NO_COLOR = '\u001b[0m'; 327 String _NO_COLOR = '\u001b[0m';
328 328
329 class Mock { 329 class Mock {
330 const Mock(); 330 const Mock();
331 bool get useColors() => true; 331 bool get useColors() => true;
332 internalError(message) { throw message.toString(); } 332 internalError(message) { throw message.toString(); }
333 } 333 }
OLDNEW
« no previous file with comments | « lib/compiler/implementation/scanner/vm_scanner_bench.dart ('k') | tests/utils/src/DummyCompilerTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698