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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 @override | 98 @override |
99 bool get isEnum => actualElement.isEnum; | 99 bool get isEnum => actualElement.isEnum; |
100 | 100 |
101 @override | 101 @override |
102 bool get isOrInheritsProxy => actualElement.isOrInheritsProxy; | 102 bool get isOrInheritsProxy => actualElement.isOrInheritsProxy; |
103 | 103 |
104 @override | 104 @override |
105 bool get isProxy => actualElement.isProxy; | 105 bool get isProxy => actualElement.isProxy; |
106 | 106 |
107 @override | 107 @override |
| 108 bool isSuperConstructorAccessible(ConstructorElement constructor) => |
| 109 actualElement.isSuperConstructorAccessible(constructor); |
| 110 |
| 111 @override |
108 bool get isTypedef => actualElement.isTypedef; | 112 bool get isTypedef => actualElement.isTypedef; |
109 | 113 |
110 @override | 114 @override |
111 bool get isValidMixin => actualElement.isValidMixin; | 115 bool get isValidMixin => actualElement.isValidMixin; |
112 | 116 |
113 @override | 117 @override |
114 MethodElement lookUpConcreteMethod(String methodName, LibraryElement library)
=> actualElement.lookUpConcreteMethod(methodName, library); | 118 MethodElement lookUpConcreteMethod(String methodName, LibraryElement library)
=> actualElement.lookUpConcreteMethod(methodName, library); |
115 | 119 |
116 @override | 120 @override |
117 PropertyAccessorElement lookUpGetter(String getterName, LibraryElement library
) => actualElement.lookUpGetter(getterName, library); | 121 PropertyAccessorElement lookUpGetter(String getterName, LibraryElement library
) => actualElement.lookUpGetter(getterName, library); |
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1001 VariableElement get actualElement => super.actualElement as VariableElement; | 1005 VariableElement get actualElement => super.actualElement as VariableElement; |
1002 } | 1006 } |
1003 /** | 1007 /** |
1004 * TODO(scheglov) invalid implementation | 1008 * TODO(scheglov) invalid implementation |
1005 */ | 1009 */ |
1006 class WeakReference<T> { | 1010 class WeakReference<T> { |
1007 final T value; | 1011 final T value; |
1008 WeakReference(this.value); | 1012 WeakReference(this.value); |
1009 T get() => value; | 1013 T get() => value; |
1010 } | 1014 } |
OLD | NEW |