| 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 29 matching lines...) Expand all Loading... |
| 40 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | 40 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
| 41 import '../util/util.dart'; | 41 import '../util/util.dart'; |
| 42 | 42 |
| 43 import 'class_members.dart' show MembersCreator; | 43 import 'class_members.dart' show MembersCreator; |
| 44 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 44 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
| 45 | 45 |
| 46 part 'members.dart'; | 46 part 'members.dart'; |
| 47 part 'registry.dart'; | 47 part 'registry.dart'; |
| 48 part 'scope.dart'; | 48 part 'scope.dart'; |
| 49 part 'signatures.dart'; | 49 part 'signatures.dart'; |
| OLD | NEW |