| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // This code was auto-generated, is not intended to be edited, and is subject to |
| 6 // significant change. Please see the README file for more information. | 6 // significant change. Please see the README file for more information. |
| 7 | 7 |
| 8 library engine.element_handle; | 8 library engine.element_handle; |
| 9 | 9 |
| 10 import 'ast.dart'; | 10 import 'ast.dart'; |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 @override | 514 @override |
| 515 List<FunctionElement> get functions => actualElement.functions; | 515 List<FunctionElement> get functions => actualElement.functions; |
| 516 | 516 |
| 517 @override | 517 @override |
| 518 bool get isAbstract => actualElement.isAbstract; | 518 bool get isAbstract => actualElement.isAbstract; |
| 519 | 519 |
| 520 @override | 520 @override |
| 521 bool get isAsynchronous => actualElement.isAsynchronous; | 521 bool get isAsynchronous => actualElement.isAsynchronous; |
| 522 | 522 |
| 523 @override | 523 @override |
| 524 bool get isExternal => actualElement.isExternal; |
| 525 |
| 526 @override |
| 524 bool get isGenerator => actualElement.isGenerator; | 527 bool get isGenerator => actualElement.isGenerator; |
| 525 | 528 |
| 526 @override | 529 @override |
| 527 bool get isOperator => actualElement.isOperator; | 530 bool get isOperator => actualElement.isOperator; |
| 528 | 531 |
| 529 @override | 532 @override |
| 530 bool get isStatic => actualElement.isStatic; | 533 bool get isStatic => actualElement.isStatic; |
| 531 | 534 |
| 532 @override | 535 @override |
| 533 bool get isSynchronous => actualElement.isSynchronous; | 536 bool get isSynchronous => actualElement.isSynchronous; |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1102 DartType get type => actualElement.type; | 1105 DartType get type => actualElement.type; |
| 1103 } | 1106 } |
| 1104 /** | 1107 /** |
| 1105 * TODO(scheglov) invalid implementation | 1108 * TODO(scheglov) invalid implementation |
| 1106 */ | 1109 */ |
| 1107 class WeakReference<T> { | 1110 class WeakReference<T> { |
| 1108 final T value; | 1111 final T value; |
| 1109 WeakReference(this.value); | 1112 WeakReference(this.value); |
| 1110 T get() => value; | 1113 T get() => value; |
| 1111 } | 1114 } |
| OLD | NEW |