| 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 '../constants/expressions.dart'; | 9 import '../constants/expressions.dart'; |
| 10 import '../constants/values.dart'; | 10 import '../constants/values.dart'; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 ParameterElementX, | 38 ParameterElementX, |
| 39 ParameterMetadataAnnotation, | 39 ParameterMetadataAnnotation, |
| 40 SynthesizedConstructorElementX, | 40 SynthesizedConstructorElementX, |
| 41 TypeVariableElementX, | 41 TypeVariableElementX, |
| 42 TypedefElementX, | 42 TypedefElementX, |
| 43 VariableElementX, | 43 VariableElementX, |
| 44 VariableList; | 44 VariableList; |
| 45 | 45 |
| 46 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | 46 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
| 47 import '../util/util.dart'; | 47 import '../util/util.dart'; |
| 48 import '../universe/universe.dart' show CallStructure; |
| 48 | 49 |
| 49 import 'class_members.dart' show MembersCreator; | 50 import 'class_members.dart' show MembersCreator; |
| 50 import 'enum_creator.dart'; | 51 import 'enum_creator.dart'; |
| 51 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 52 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
| 52 | 53 |
| 53 part 'members.dart'; | 54 part 'members.dart'; |
| 54 part 'registry.dart'; | 55 part 'registry.dart'; |
| 55 part 'scope.dart'; | 56 part 'scope.dart'; |
| 56 part 'signatures.dart'; | 57 part 'signatures.dart'; |
| OLD | NEW |