| 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:collection' show LinkedHashMap, IterableBase; | 7 import 'dart:collection' show IterableBase; |
| 8 | 8 |
| 9 import 'scanner_implementation.dart'; | 9 import 'scanner_implementation.dart'; |
| 10 import '../elements/elements.dart'; | 10 import '../elements/elements.dart'; |
| 11 import '../elements/modelx.dart' | 11 import '../elements/modelx.dart' |
| 12 show FunctionElementX, | 12 show FunctionElementX, |
| 13 TypedefElementX, | 13 TypedefElementX, |
| 14 VariableElementX, | 14 VariableElementX, |
| 15 VariableListElementX, | 15 VariableListElementX, |
| 16 ClassElementX, | 16 ClassElementX, |
| 17 MetadataAnnotationX, | 17 MetadataAnnotationX, |
| 18 MixinApplicationElementX; | 18 MixinApplicationElementX; |
| 19 import '../dart2jslib.dart'; | 19 import '../dart2jslib.dart'; |
| 20 import '../native_handler.dart' as native; | 20 import '../native_handler.dart' as native; |
| 21 import '../string_validator.dart'; | 21 import '../string_validator.dart'; |
| 22 import '../tree/tree.dart'; | 22 import '../tree/tree.dart'; |
| 23 import '../util/characters.dart'; | 23 import '../util/characters.dart'; |
| 24 import '../util/util.dart'; | 24 import '../util/util.dart'; |
| 25 | 25 |
| 26 part 'class_element_parser.dart'; | 26 part 'class_element_parser.dart'; |
| 27 part 'keyword.dart'; | 27 part 'keyword.dart'; |
| 28 part 'listener.dart'; | 28 part 'listener.dart'; |
| 29 part 'parser.dart'; | 29 part 'parser.dart'; |
| 30 part 'parser_task.dart'; | 30 part 'parser_task.dart'; |
| 31 part 'partial_parser.dart'; | 31 part 'partial_parser.dart'; |
| 32 part 'scanner.dart'; | 32 part 'scanner.dart'; |
| 33 part 'scanner_task.dart'; | 33 part 'scanner_task.dart'; |
| 34 part 'string_scanner.dart'; | 34 part 'string_scanner.dart'; |
| 35 part 'token.dart'; | 35 part 'token.dart'; |
| OLD | NEW |