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 | 7 |
8 import '../constants/expressions.dart'; | 8 import '../constants/expressions.dart'; |
9 import '../tree/tree.dart'; | 9 import '../tree/tree.dart'; |
10 import '../util/util.dart'; | 10 import '../util/util.dart'; |
11 import '../resolution/resolution.dart'; | 11 import '../resolution/resolution.dart'; |
12 | 12 |
13 import '../dart2jslib.dart' show InterfaceType, | 13 import '../dart2jslib.dart' show InterfaceType, |
14 DartType, | 14 DartType, |
15 TypeVariableType, | 15 TypeVariableType, |
16 TypedefType, | 16 TypedefType, |
17 DualKind, | 17 DualKind, |
18 MessageKind, | 18 MessageKind, |
19 DiagnosticListener, | 19 DiagnosticListener, |
20 Script, | 20 Script, |
21 FunctionType, | 21 FunctionType, |
22 Selector, | 22 Selector, |
23 SourceSpan, | 23 SourceSpan, |
24 Constant, | 24 Constant, |
25 Compiler, | 25 Compiler, |
26 Backend, | 26 Backend, |
27 isPrivateName; | 27 isPrivateName; |
28 | 28 |
29 import '../dart_types.dart'; | 29 import '../dart_types.dart'; |
30 import '../helpers/helpers.dart'; | |
31 | 30 |
32 import '../scanner/scannerlib.dart' show Token, | 31 import '../scanner/scannerlib.dart' show Token, |
33 isUserDefinableOperator, | 32 isUserDefinableOperator, |
34 isMinusOperator; | 33 isMinusOperator; |
35 | 34 |
36 import '../ordered_typeset.dart' show OrderedTypeSet; | 35 import '../ordered_typeset.dart' show OrderedTypeSet; |
37 | 36 |
38 import 'visitor.dart' show ElementVisitor; | 37 import 'visitor.dart' show ElementVisitor; |
39 | 38 |
40 part 'names.dart'; | 39 part 'names.dart'; |
(...skipping 1603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1644 bool get isDeclaredByField; | 1643 bool get isDeclaredByField; |
1645 | 1644 |
1646 /// Returns `true` if this member is abstract. | 1645 /// Returns `true` if this member is abstract. |
1647 bool get isAbstract; | 1646 bool get isAbstract; |
1648 | 1647 |
1649 /// If abstract, [implementation] points to the overridden concrete member, | 1648 /// If abstract, [implementation] points to the overridden concrete member, |
1650 /// if any. Otherwise [implementation] points to the member itself. | 1649 /// if any. Otherwise [implementation] points to the member itself. |
1651 Member get implementation; | 1650 Member get implementation; |
1652 } | 1651 } |
1653 | 1652 |
OLD | NEW |