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.dart'; |
8 import '../common/resolution.dart' show Resolution; | 8 import '../common/resolution.dart' show Resolution; |
9 import '../compiler.dart' show Compiler; | |
10 import '../constants/constructors.dart'; | 9 import '../constants/constructors.dart'; |
11 import '../constants/expressions.dart'; | 10 import '../constants/expressions.dart'; |
12 import '../core_types.dart' show CommonElements; | 11 import '../core_types.dart' show CommonElements; |
13 import '../ordered_typeset.dart' show OrderedTypeSet; | 12 import '../ordered_typeset.dart' show OrderedTypeSet; |
14 import '../resolution/scope.dart' show Scope; | 13 import '../resolution/scope.dart' show Scope; |
15 import '../resolution/tree_elements.dart' show TreeElements; | 14 import '../resolution/tree_elements.dart' show TreeElements; |
16 import '../script.dart'; | 15 import '../script.dart'; |
17 import '../tokens/token.dart' | 16 import '../tokens/token.dart' |
18 show Token, isUserDefinableOperator, isMinusOperator; | 17 show Token, isUserDefinableOperator, isMinusOperator; |
19 import '../tree/tree.dart'; | 18 import '../tree/tree.dart'; |
(...skipping 2024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2044 /// by a field. | 2043 /// by a field. |
2045 bool get isDeclaredByField; | 2044 bool get isDeclaredByField; |
2046 | 2045 |
2047 /// Returns `true` if this member is abstract. | 2046 /// Returns `true` if this member is abstract. |
2048 bool get isAbstract; | 2047 bool get isAbstract; |
2049 | 2048 |
2050 /// If abstract, [implementation] points to the overridden concrete member, | 2049 /// If abstract, [implementation] points to the overridden concrete member, |
2051 /// if any. Otherwise [implementation] points to the member itself. | 2050 /// if any. Otherwise [implementation] points to the member itself. |
2052 Member get implementation; | 2051 Member get implementation; |
2053 } | 2052 } |
OLD | NEW |