OLD | NEW |
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('../leg.dart'); |
12 #import('../native_handler.dart', prefix: 'native'); | 12 #import('../native_handler.dart', prefix: '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. |
| 18 #import('../../compiler.dart', prefix: 'api_s'); |
17 | 19 |
18 #source('class_element_parser.dart'); | 20 #source('class_element_parser.dart'); |
19 #source('keyword.dart'); | 21 #source('keyword.dart'); |
20 #source('listener.dart'); | 22 #source('listener.dart'); |
21 #source('parser.dart'); | 23 #source('parser.dart'); |
22 #source('parser_task.dart'); | 24 #source('parser_task.dart'); |
23 #source('partial_parser.dart'); | 25 #source('partial_parser.dart'); |
24 #source('scanner.dart'); | 26 #source('scanner.dart'); |
25 #source('scanner_task.dart'); | 27 #source('scanner_task.dart'); |
26 #source('string_scanner.dart'); | 28 #source('string_scanner.dart'); |
27 #source('token.dart'); | 29 #source('token.dart'); |
OLD | NEW |