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 elements; | 5 library elements; |
6 | 6 |
| 7 import '../common.dart'; |
7 import '../common/resolution.dart' show | 8 import '../common/resolution.dart' show |
8 Resolution; | 9 Resolution; |
9 import '../compiler.dart' show | 10 import '../compiler.dart' show |
10 Compiler; | 11 Compiler; |
11 import '../constants/constructors.dart'; | 12 import '../constants/constructors.dart'; |
12 import '../constants/expressions.dart'; | 13 import '../constants/expressions.dart'; |
13 import '../dart_types.dart'; | 14 import '../dart_types.dart'; |
14 import '../diagnostics/diagnostic_listener.dart'; | |
15 import '../diagnostics/messages.dart' show | |
16 MessageKind; | |
17 import '../diagnostics/source_span.dart' show | |
18 SourceSpan; | |
19 import '../diagnostics/spannable.dart' show | |
20 Spannable; | |
21 import '../resolution/scope.dart' show | 15 import '../resolution/scope.dart' show |
22 Scope; | 16 Scope; |
23 import '../resolution/tree_elements.dart' show | 17 import '../resolution/tree_elements.dart' show |
24 TreeElements; | 18 TreeElements; |
25 import '../ordered_typeset.dart' show OrderedTypeSet; | 19 import '../ordered_typeset.dart' show OrderedTypeSet; |
26 import '../script.dart'; | 20 import '../script.dart'; |
27 import '../tokens/token.dart' show | 21 import '../tokens/token.dart' show |
28 Token, | 22 Token, |
29 isUserDefinableOperator, | 23 isUserDefinableOperator, |
30 isMinusOperator; | 24 isMinusOperator; |
(...skipping 1677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1708 bool get isDeclaredByField; | 1702 bool get isDeclaredByField; |
1709 | 1703 |
1710 /// Returns `true` if this member is abstract. | 1704 /// Returns `true` if this member is abstract. |
1711 bool get isAbstract; | 1705 bool get isAbstract; |
1712 | 1706 |
1713 /// If abstract, [implementation] points to the overridden concrete member, | 1707 /// If abstract, [implementation] points to the overridden concrete member, |
1714 /// if any. Otherwise [implementation] points to the member itself. | 1708 /// if any. Otherwise [implementation] points to the member itself. |
1715 Member get implementation; | 1709 Member get implementation; |
1716 } | 1710 } |
1717 | 1711 |
OLD | NEW |