| 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 library analyzer.src.generated.element_handle; | 5 library analyzer.src.generated.element_handle; |
| 6 | 6 |
| 7 import 'package:analyzer/dart/ast/ast.dart'; | 7 import 'package:analyzer/dart/ast/ast.dart'; |
| 8 import 'package:analyzer/dart/constant/value.dart'; | 8 import 'package:analyzer/dart/constant/value.dart'; |
| 9 import 'package:analyzer/dart/element/element.dart'; | 9 import 'package:analyzer/dart/element/element.dart'; |
| 10 import 'package:analyzer/dart/element/type.dart'; | 10 import 'package:analyzer/dart/element/type.dart'; |
| (...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 898 | 898 |
| 899 @override | 899 @override |
| 900 bool get isStatic => actualElement.isStatic; | 900 bool get isStatic => actualElement.isStatic; |
| 901 | 901 |
| 902 @override | 902 @override |
| 903 ElementKind get kind => ElementKind.METHOD; | 903 ElementKind get kind => ElementKind.METHOD; |
| 904 | 904 |
| 905 @override | 905 @override |
| 906 MethodDeclaration computeNode() => actualElement.computeNode(); | 906 MethodDeclaration computeNode() => actualElement.computeNode(); |
| 907 | 907 |
| 908 @deprecated |
| 908 @override | 909 @override |
| 909 FunctionType getReifiedType(DartType objectType) => | 910 FunctionType getReifiedType(DartType objectType) => |
| 910 actualElement.getReifiedType(objectType); | 911 actualElement.getReifiedType(objectType); |
| 911 } | 912 } |
| 912 | 913 |
| 913 /** | 914 /** |
| 914 * A handle to a [ParameterElement]. | 915 * A handle to a [ParameterElement]. |
| 915 */ | 916 */ |
| 916 class ParameterElementHandle extends VariableElementHandle | 917 class ParameterElementHandle extends VariableElementHandle |
| 917 with ParameterElementMixin | 918 with ParameterElementMixin |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1149 | 1150 |
| 1150 @override | 1151 @override |
| 1151 bool get isStatic => actualElement.isStatic; | 1152 bool get isStatic => actualElement.isStatic; |
| 1152 | 1153 |
| 1153 @override | 1154 @override |
| 1154 DartType get type => actualElement.type; | 1155 DartType get type => actualElement.type; |
| 1155 | 1156 |
| 1156 @override | 1157 @override |
| 1157 DartObject computeConstantValue() => actualElement.computeConstantValue(); | 1158 DartObject computeConstantValue() => actualElement.computeConstantValue(); |
| 1158 } | 1159 } |
| OLD | NEW |