| 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 '../compiler.dart' show | 
 |     8     Compiler, | 
 |     9     isPrivateName; | 
|     7 import '../constants/constructors.dart'; |    10 import '../constants/constructors.dart'; | 
|     8 import '../constants/expressions.dart'; |    11 import '../constants/expressions.dart'; | 
|     9 import '../dart_types.dart'; |    12 import '../dart_types.dart'; | 
|    10 import '../dart2jslib.dart' show |    13 import '../diagnostic_listener.dart'; | 
|    11     Backend, |    14 import '../diagnostics/source_span.dart' show | 
|    12     Compiler, |  | 
|    13     isPrivateName, |  | 
|    14     SourceSpan; |    15     SourceSpan; | 
|    15 import '../diagnostic_listener.dart'; |    16 import '../diagnostics/spannable.dart' show | 
 |    17     Spannable; | 
|    16 import '../messages.dart' show MessageKind; |    18 import '../messages.dart' show MessageKind; | 
|    17 import '../resolution/resolution.dart'; |    19 import '../resolution/resolution.dart'; | 
|    18 import '../ordered_typeset.dart' show OrderedTypeSet; |    20 import '../ordered_typeset.dart' show OrderedTypeSet; | 
|    19 import '../scanner/scannerlib.dart' show |    21 import '../scanner/scannerlib.dart' show | 
|    20     Token, |    22     Token, | 
|    21     isUserDefinableOperator, |    23     isUserDefinableOperator, | 
|    22     isMinusOperator; |    24     isMinusOperator; | 
|    23 import '../script.dart'; |    25 import '../script.dart'; | 
|    24 import '../tree/tree.dart'; |    26 import '../tree/tree.dart'; | 
|    25 import '../util/util.dart'; |    27 import '../util/util.dart'; | 
| (...skipping 1620 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1646   bool get isDeclaredByField; |  1648   bool get isDeclaredByField; | 
|  1647  |  1649  | 
|  1648   /// Returns `true` if this member is abstract. |  1650   /// Returns `true` if this member is abstract. | 
|  1649   bool get isAbstract; |  1651   bool get isAbstract; | 
|  1650  |  1652  | 
|  1651   /// If abstract, [implementation] points to the overridden concrete member, |  1653   /// If abstract, [implementation] points to the overridden concrete member, | 
|  1652   /// if any. Otherwise [implementation] points to the member itself. |  1654   /// if any. Otherwise [implementation] points to the member itself. | 
|  1653   Member get implementation; |  1655   Member get implementation; | 
|  1654 } |  1656 } | 
|  1655  |  1657  | 
| OLD | NEW |