| 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 IterableBase, HashSet; | 7 import 'dart:collection' show IterableBase, HashSet; |
| 8 | 8 |
| 9 import '../dart_types.dart' show DynamicType; | 9 import '../dart_types.dart' show DynamicType; |
| 10 import '../elements/elements.dart'; | 10 import '../elements/elements.dart'; |
| 11 | 11 |
| 12 import '../elements/modelx.dart' show | 12 import '../elements/modelx.dart' show |
| 13 BaseFunctionElementX, |
| 13 ClassElementX, | 14 ClassElementX, |
| 14 CompilationUnitElementX, | 15 CompilationUnitElementX, |
| 15 ConstructorElementX, | 16 ConstructorElementX, |
| 16 DeclarationSite, | 17 DeclarationSite, |
| 17 ElementX, | 18 ElementX, |
| 18 EnumClassElementX, | 19 EnumClassElementX, |
| 19 FieldElementX, | 20 FieldElementX, |
| 20 FunctionElementX, | 21 GetterElementX, |
| 22 MethodElementX, |
| 23 LibraryElementX, |
| 21 MetadataAnnotationX, | 24 MetadataAnnotationX, |
| 22 MixinApplicationElementX, | 25 MixinApplicationElementX, |
| 26 SetterElementX, |
| 23 TypedefElementX, | 27 TypedefElementX, |
| 24 VariableElementX, | 28 VariableElementX, |
| 25 VariableList; | 29 VariableList; |
| 26 | 30 |
| 27 import '../elements/visitor.dart' | 31 import '../elements/visitor.dart' |
| 28 show ElementVisitor; | 32 show ElementVisitor; |
| 29 import '../dart2jslib.dart'; | 33 import '../dart2jslib.dart'; |
| 30 import '../native/native.dart' as native; | 34 import '../native/native.dart' as native; |
| 31 import '../string_validator.dart'; | 35 import '../string_validator.dart'; |
| 32 import '../tree/tree.dart'; | 36 import '../tree/tree.dart'; |
| 33 import '../util/characters.dart'; | 37 import '../util/characters.dart'; |
| 34 import '../util/util.dart'; | 38 import '../util/util.dart'; |
| 35 import '../io/source_file.dart' show SourceFile, Utf8BytesSourceFile; | 39 import '../io/source_file.dart' show SourceFile, Utf8BytesSourceFile; |
| 36 import 'dart:convert' show UTF8, UNICODE_BOM_CHARACTER_RUNE; | 40 import 'dart:convert' show UTF8, UNICODE_BOM_CHARACTER_RUNE; |
| 37 import 'dart:typed_data' show Uint8List; | 41 import 'dart:typed_data' show Uint8List; |
| 38 | 42 |
| 39 part 'class_element_parser.dart'; | 43 part 'class_element_parser.dart'; |
| 40 part 'keyword.dart'; | 44 part 'keyword.dart'; |
| 41 part 'listener.dart'; | 45 part 'listener.dart'; |
| 42 part 'parser.dart'; | 46 part 'parser.dart'; |
| 43 part 'parser_task.dart'; | 47 part 'parser_task.dart'; |
| 44 part 'partial_parser.dart'; | 48 part 'partial_parser.dart'; |
| 45 part 'scanner.dart'; | 49 part 'scanner.dart'; |
| 46 part 'scanner_task.dart'; | 50 part 'scanner_task.dart'; |
| 47 part 'array_based_scanner.dart'; | 51 part 'array_based_scanner.dart'; |
| 48 part 'utf8_bytes_scanner.dart'; | 52 part 'utf8_bytes_scanner.dart'; |
| 49 part 'string_scanner.dart'; | 53 part 'string_scanner.dart'; |
| 50 part 'token.dart'; | 54 part 'token.dart'; |
| OLD | NEW |