| 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 import '../constants/constructors.dart'; |
| 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, |
| (...skipping 1638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1656 bool get isDeclaredByField; | 1656 bool get isDeclaredByField; |
| 1657 | 1657 |
| 1658 /// Returns `true` if this member is abstract. | 1658 /// Returns `true` if this member is abstract. |
| 1659 bool get isAbstract; | 1659 bool get isAbstract; |
| 1660 | 1660 |
| 1661 /// If abstract, [implementation] points to the overridden concrete member, | 1661 /// If abstract, [implementation] points to the overridden concrete member, |
| 1662 /// if any. Otherwise [implementation] points to the member itself. | 1662 /// if any. Otherwise [implementation] points to the member itself. |
| 1663 Member get implementation; | 1663 Member get implementation; |
| 1664 } | 1664 } |
| 1665 | 1665 |
| OLD | NEW |