| 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 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1065 @override | 1065 @override |
| 1066 FunctionElement get initializer => actualElement.initializer; | 1066 FunctionElement get initializer => actualElement.initializer; |
| 1067 | 1067 |
| 1068 @override | 1068 @override |
| 1069 bool get isConst => actualElement.isConst; | 1069 bool get isConst => actualElement.isConst; |
| 1070 | 1070 |
| 1071 @override | 1071 @override |
| 1072 bool get isFinal => actualElement.isFinal; | 1072 bool get isFinal => actualElement.isFinal; |
| 1073 | 1073 |
| 1074 @override | 1074 @override |
| 1075 bool get isPotentiallyMutatedInClosure => |
| 1076 actualElement.isPotentiallyMutatedInClosure; |
| 1077 |
| 1078 @override |
| 1079 bool get isPotentiallyMutatedInScope => |
| 1080 actualElement.isPotentiallyMutatedInScope; |
| 1081 |
| 1082 @override |
| 1075 VariableDeclaration get node => actualElement.node; | 1083 VariableDeclaration get node => actualElement.node; |
| 1076 | 1084 |
| 1077 @override | 1085 @override |
| 1078 DartType get type => actualElement.type; | 1086 DartType get type => actualElement.type; |
| 1079 } | 1087 } |
| 1080 /** | 1088 /** |
| 1081 * TODO(scheglov) invalid implementation | 1089 * TODO(scheglov) invalid implementation |
| 1082 */ | 1090 */ |
| 1083 class WeakReference<T> { | 1091 class WeakReference<T> { |
| 1084 final T value; | 1092 final T value; |
| 1085 WeakReference(this.value); | 1093 WeakReference(this.value); |
| 1086 T get() => value; | 1094 T get() => value; |
| 1087 } | 1095 } |
| OLD | NEW |