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

Side by Side Diff: dart/lib/compiler/implementation/scanner/scannerlib.dart

Issue 11184046: Clean up leg.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased on CL 11187067 Created 8 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 | Annotate | Revision Log
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('scanner'); 5 library scanner;
6 6
7 #import('dart:uri'); 7 import 'dart:uri';
8 8
9 #import('scanner_implementation.dart'); 9 import 'scanner_implementation.dart';
10 #import('../elements/elements.dart'); 10 import '../elements/elements.dart';
11 #import('../leg.dart'); 11 import '../dart2jslib.dart';
12 #import('../native_handler.dart', prefix: 'native'); 12 import '../native_handler.dart' as native;
13 #import('../string_validator.dart'); 13 import '../string_validator.dart';
14 #import('../tree/tree.dart'); 14 import '../tree/tree.dart';
15 #import('../util/characters.dart'); 15 import '../util/characters.dart';
16 #import('../util/util.dart'); 16 import '../util/util.dart';
17 // TODO(ahe): Rename prefix to 'api' when VM bug is fixed. 17 // TODO(ahe): Rename prefix to 'api' when VM bug is fixed.
18 #import('../../compiler.dart', prefix: 'api_s'); 18 import '../../compiler.dart' as api_s;
19 19
20 #source('class_element_parser.dart'); 20 part 'class_element_parser.dart';
21 #source('keyword.dart'); 21 part 'keyword.dart';
22 #source('listener.dart'); 22 part 'listener.dart';
23 #source('parser.dart'); 23 part 'parser.dart';
24 #source('parser_task.dart'); 24 part 'parser_task.dart';
25 #source('partial_parser.dart'); 25 part 'partial_parser.dart';
26 #source('scanner.dart'); 26 part 'scanner.dart';
27 #source('scanner_task.dart'); 27 part 'scanner_task.dart';
28 #source('string_scanner.dart'); 28 part 'string_scanner.dart';
29 #source('token.dart'); 29 part 'token.dart';
OLDNEW
« no previous file with comments | « dart/lib/compiler/implementation/runtime_types.dart ('k') | dart/lib/compiler/implementation/ssa/ssa.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698