| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 resolution; | 5 library resolution; |
| 6 | 6 |
| 7 import 'dart:collection' show Queue; | 7 import 'dart:collection' show Queue; |
| 8 | 8 |
| 9 import '../compile_time_constants.dart'; | 9 import '../compile_time_constants.dart'; |
| 10 import '../constants/expressions.dart'; | 10 import '../constants/expressions.dart'; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 ParameterElementX, | 40 ParameterElementX, |
| 41 ParameterMetadataAnnotation, | 41 ParameterMetadataAnnotation, |
| 42 SynthesizedConstructorElementX, | 42 SynthesizedConstructorElementX, |
| 43 TypeVariableElementX, | 43 TypeVariableElementX, |
| 44 TypedefElementX, | 44 TypedefElementX, |
| 45 VariableElementX, | 45 VariableElementX, |
| 46 VariableList; | 46 VariableList; |
| 47 | 47 |
| 48 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | 48 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
| 49 import '../util/util.dart'; | 49 import '../util/util.dart'; |
| 50 import '../universe/universe.dart' show CallStructure; | 50 import '../universe/universe.dart' show CallStructure, SelectorKind; |
| 51 | 51 |
| 52 import 'access_semantics.dart'; | 52 import 'access_semantics.dart'; |
| 53 import 'class_members.dart' show MembersCreator; | 53 import 'class_members.dart' show MembersCreator; |
| 54 import 'enum_creator.dart'; | 54 import 'enum_creator.dart'; |
| 55 import 'operators.dart'; | 55 import 'operators.dart'; |
| 56 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 56 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
| 57 import 'send_structure.dart'; | 57 import 'send_structure.dart'; |
| 58 | 58 |
| 59 part 'class_hierarchy.dart'; | 59 part 'class_hierarchy.dart'; |
| 60 part 'constructors.dart'; | 60 part 'constructors.dart'; |
| 61 part 'label_scope.dart'; | 61 part 'label_scope.dart'; |
| 62 part 'members.dart'; | 62 part 'members.dart'; |
| 63 part 'registry.dart'; | 63 part 'registry.dart'; |
| 64 part 'resolution_common.dart'; | 64 part 'resolution_common.dart'; |
| 65 part 'resolution_result.dart'; | 65 part 'resolution_result.dart'; |
| 66 part 'scope.dart'; | 66 part 'scope.dart'; |
| 67 part 'signatures.dart'; | 67 part 'signatures.dart'; |
| 68 part 'tree_elements.dart'; | 68 part 'tree_elements.dart'; |
| 69 part 'typedefs.dart'; | 69 part 'typedefs.dart'; |
| 70 part 'type_resolver.dart'; | 70 part 'type_resolver.dart'; |
| 71 part 'variables.dart'; | 71 part 'variables.dart'; |
| OLD | NEW |