| 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 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1104 @deprecated | 1104 @deprecated |
| 1105 @override | 1105 @override |
| 1106 bool get isPotentiallyMutatedInScope => | 1106 bool get isPotentiallyMutatedInScope => |
| 1107 actualElement.isPotentiallyMutatedInScope; | 1107 actualElement.isPotentiallyMutatedInScope; |
| 1108 | 1108 |
| 1109 @override | 1109 @override |
| 1110 bool get isStatic => actualElement.isStatic; | 1110 bool get isStatic => actualElement.isStatic; |
| 1111 | 1111 |
| 1112 @override | 1112 @override |
| 1113 DartType get type => actualElement.type; | 1113 DartType get type => actualElement.type; |
| 1114 |
| 1115 @override |
| 1116 DartObject computeConstantValue() => actualElement.computeConstantValue(); |
| 1114 } | 1117 } |
| OLD | NEW |