| 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 '../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'; |
| OLD | NEW |