| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 @override | 89 @override |
| 90 bool get hasReferenceToSuper => actualElement.hasReferenceToSuper; | 90 bool get hasReferenceToSuper => actualElement.hasReferenceToSuper; |
| 91 | 91 |
| 92 @override | 92 @override |
| 93 bool get hasStaticMember => actualElement.hasStaticMember; | 93 bool get hasStaticMember => actualElement.hasStaticMember; |
| 94 | 94 |
| 95 @override | 95 @override |
| 96 bool get isAbstract => actualElement.isAbstract; | 96 bool get isAbstract => actualElement.isAbstract; |
| 97 | 97 |
| 98 @override | 98 @override |
| 99 bool get isEnum => actualElement.isEnum; |
| 100 |
| 101 @override |
| 99 bool get isOrInheritsProxy => actualElement.isOrInheritsProxy; | 102 bool get isOrInheritsProxy => actualElement.isOrInheritsProxy; |
| 100 | 103 |
| 101 @override | 104 @override |
| 102 bool get isProxy => actualElement.isProxy; | 105 bool get isProxy => actualElement.isProxy; |
| 103 | 106 |
| 104 @override | 107 @override |
| 105 bool get isTypedef => actualElement.isTypedef; | 108 bool get isTypedef => actualElement.isTypedef; |
| 106 | 109 |
| 107 @override | 110 @override |
| 108 bool get isValidMixin => actualElement.isValidMixin; | 111 bool get isValidMixin => actualElement.isValidMixin; |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 @override | 460 @override |
| 458 List<ParameterElement> get parameters => actualElement.parameters; | 461 List<ParameterElement> get parameters => actualElement.parameters; |
| 459 | 462 |
| 460 @override | 463 @override |
| 461 DartType get returnType => actualElement.returnType; | 464 DartType get returnType => actualElement.returnType; |
| 462 | 465 |
| 463 @override | 466 @override |
| 464 FunctionType get type => actualElement.type; | 467 FunctionType get type => actualElement.type; |
| 465 | 468 |
| 466 @override | 469 @override |
| 470 bool get isAsynchronous => actualElement.isAsynchronous; |
| 471 |
| 472 @override |
| 473 bool get isGenerator => actualElement.isGenerator; |
| 474 |
| 475 @override |
| 467 bool get isOperator => actualElement.isOperator; | 476 bool get isOperator => actualElement.isOperator; |
| 468 | 477 |
| 469 @override | 478 @override |
| 470 bool get isStatic => actualElement.isStatic; | 479 bool get isStatic => actualElement.isStatic; |
| 471 | 480 |
| 472 @override | 481 @override |
| 482 bool get isSynchronous => actualElement.isSynchronous; |
| 483 |
| 484 @override |
| 473 ExecutableElement get actualElement => super.actualElement as ExecutableElemen
t; | 485 ExecutableElement get actualElement => super.actualElement as ExecutableElemen
t; |
| 474 } | 486 } |
| 475 | 487 |
| 476 /** | 488 /** |
| 477 * Instances of the class `ExportElementHandle` implement a handle to an `Export
Element` | 489 * Instances of the class `ExportElementHandle` implement a handle to an `Export
Element` |
| 478 * . | 490 * . |
| 479 */ | 491 */ |
| 480 class ExportElementHandle extends ElementHandle implements ExportElement { | 492 class ExportElementHandle extends ElementHandle implements ExportElement { |
| 481 /** | 493 /** |
| 482 * Initialize a newly created element handle to represent the given element. | 494 * Initialize a newly created element handle to represent the given element. |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 989 VariableElement get actualElement => super.actualElement as VariableElement; | 1001 VariableElement get actualElement => super.actualElement as VariableElement; |
| 990 } | 1002 } |
| 991 /** | 1003 /** |
| 992 * TODO(scheglov) invalid implementation | 1004 * TODO(scheglov) invalid implementation |
| 993 */ | 1005 */ |
| 994 class WeakReference<T> { | 1006 class WeakReference<T> { |
| 995 final T value; | 1007 final T value; |
| 996 WeakReference(this.value); | 1008 WeakReference(this.value); |
| 997 T get() => value; | 1009 T get() => value; |
| 998 } | 1010 } |
| OLD | NEW |