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 '../dart2jslib.dart' hide Diagnostic; | 7 import '../dart2jslib.dart' hide Diagnostic; |
8 import '../../compiler.dart' show Diagnostic; | 8 import '../../compiler.dart' show Diagnostic; |
9 import '../tree/tree.dart'; | 9 import '../tree/tree.dart'; |
10 import '../elements/elements.dart'; | 10 import '../elements/elements.dart'; |
11 import '../util/util.dart'; | 11 import '../util/util.dart'; |
12 import '../runtime_types.dart'; | |
ngeoffray
2012/11/20 14:13:19
This doesn't look right.
| |
12 import '../scanner/scannerlib.dart' show PartialMetadataAnnotation; | 13 import '../scanner/scannerlib.dart' show PartialMetadataAnnotation; |
13 | 14 |
14 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 15 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
15 | 16 |
16 part 'members.dart'; | 17 part 'members.dart'; |
17 part 'scope.dart'; | 18 part 'scope.dart'; |
OLD | NEW |