| 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 'package:analyzer/src/generated/utilities_collection.dart'; | 10 import 'package:analyzer/src/generated/utilities_collection.dart'; |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 CompilationUnitElementHandle(CompilationUnitElement element) : super(element); | 177 CompilationUnitElementHandle(CompilationUnitElement element) : super(element); |
| 178 | 178 |
| 179 @override | 179 @override |
| 180 List<PropertyAccessorElement> get accessors => actualElement.accessors; | 180 List<PropertyAccessorElement> get accessors => actualElement.accessors; |
| 181 | 181 |
| 182 @override | 182 @override |
| 183 CompilationUnitElement get actualElement => | 183 CompilationUnitElement get actualElement => |
| 184 super.actualElement as CompilationUnitElement; | 184 super.actualElement as CompilationUnitElement; |
| 185 | 185 |
| 186 @override | 186 @override |
| 187 List<AngularViewElement> get angularViews => actualElement.angularViews; | |
| 188 | |
| 189 @override | |
| 190 LibraryElement get enclosingElement => | 187 LibraryElement get enclosingElement => |
| 191 super.enclosingElement as LibraryElement; | 188 super.enclosingElement as LibraryElement; |
| 192 | 189 |
| 193 @override | 190 @override |
| 194 List<ClassElement> get enums => actualElement.enums; | 191 List<ClassElement> get enums => actualElement.enums; |
| 195 | 192 |
| 196 @override | 193 @override |
| 197 List<FunctionElement> get functions => actualElement.functions; | 194 List<FunctionElement> get functions => actualElement.functions; |
| 198 | 195 |
| 199 @override | 196 @override |
| (...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 @override | 771 @override |
| 775 bool get hasLoadLibraryFunction => actualElement.hasLoadLibraryFunction; | 772 bool get hasLoadLibraryFunction => actualElement.hasLoadLibraryFunction; |
| 776 | 773 |
| 777 @override | 774 @override |
| 778 List<LibraryElement> get importedLibraries => actualElement.importedLibraries; | 775 List<LibraryElement> get importedLibraries => actualElement.importedLibraries; |
| 779 | 776 |
| 780 @override | 777 @override |
| 781 List<ImportElement> get imports => actualElement.imports; | 778 List<ImportElement> get imports => actualElement.imports; |
| 782 | 779 |
| 783 @override | 780 @override |
| 784 bool get isAngularHtml => actualElement.isAngularHtml; | |
| 785 | |
| 786 @override | |
| 787 bool get isBrowserApplication => actualElement.isBrowserApplication; | 781 bool get isBrowserApplication => actualElement.isBrowserApplication; |
| 788 | 782 |
| 789 @override | 783 @override |
| 790 bool get isDartCore => actualElement.isDartCore; | 784 bool get isDartCore => actualElement.isDartCore; |
| 791 | 785 |
| 792 @override | 786 @override |
| 793 bool get isInSdk => actualElement.isInSdk; | 787 bool get isInSdk => actualElement.isInSdk; |
| 794 | 788 |
| 795 @override | 789 @override |
| 796 ElementKind get kind => ElementKind.LIBRARY; | 790 ElementKind get kind => ElementKind.LIBRARY; |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1095 DartType get type => actualElement.type; | 1089 DartType get type => actualElement.type; |
| 1096 } | 1090 } |
| 1097 /** | 1091 /** |
| 1098 * TODO(scheglov) invalid implementation | 1092 * TODO(scheglov) invalid implementation |
| 1099 */ | 1093 */ |
| 1100 class WeakReference<T> { | 1094 class WeakReference<T> { |
| 1101 final T value; | 1095 final T value; |
| 1102 WeakReference(this.value); | 1096 WeakReference(this.value); |
| 1103 T get() => value; | 1097 T get() => value; |
| 1104 } | 1098 } |
| OLD | NEW |