| 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 ClassElementX, | 13 ClassElementX, |
| 14 CompilationUnitElementX, | 14 CompilationUnitElementX, |
| 15 ConstructorElementX, | 15 ConstructorElementX, |
| 16 DeclarationSite, | 16 DeclarationSite, |
| 17 ElementX, | 17 ElementX, |
| 18 EnumClassElementX, |
| 18 FieldElementX, | 19 FieldElementX, |
| 19 FunctionElementX, | 20 FunctionElementX, |
| 20 MetadataAnnotationX, | 21 MetadataAnnotationX, |
| 21 MixinApplicationElementX, | 22 MixinApplicationElementX, |
| 22 TypedefElementX, | 23 TypedefElementX, |
| 23 VariableElementX, | 24 VariableElementX, |
| 24 VariableList; | 25 VariableList; |
| 25 | 26 |
| 26 import '../elements/visitor.dart' | 27 import '../elements/visitor.dart' |
| 27 show ElementVisitor; | 28 show ElementVisitor; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 40 part 'listener.dart'; | 41 part 'listener.dart'; |
| 41 part 'parser.dart'; | 42 part 'parser.dart'; |
| 42 part 'parser_task.dart'; | 43 part 'parser_task.dart'; |
| 43 part 'partial_parser.dart'; | 44 part 'partial_parser.dart'; |
| 44 part 'scanner.dart'; | 45 part 'scanner.dart'; |
| 45 part 'scanner_task.dart'; | 46 part 'scanner_task.dart'; |
| 46 part 'array_based_scanner.dart'; | 47 part 'array_based_scanner.dart'; |
| 47 part 'utf8_bytes_scanner.dart'; | 48 part 'utf8_bytes_scanner.dart'; |
| 48 part 'string_scanner.dart'; | 49 part 'string_scanner.dart'; |
| 49 part 'token.dart'; | 50 part 'token.dart'; |
| OLD | NEW |