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.dart.element.member; | 5 library analyzer.src.dart.element.member; |
6 | 6 |
| 7 import 'package:analyzer/dart/ast/ast.dart'; |
7 import 'package:analyzer/dart/element/element.dart'; | 8 import 'package:analyzer/dart/element/element.dart'; |
8 import 'package:analyzer/dart/element/type.dart'; | 9 import 'package:analyzer/dart/element/type.dart'; |
9 import 'package:analyzer/src/dart/element/element.dart'; | 10 import 'package:analyzer/src/dart/element/element.dart'; |
10 import 'package:analyzer/src/dart/element/type.dart'; | 11 import 'package:analyzer/src/dart/element/type.dart'; |
11 import 'package:analyzer/src/generated/ast.dart'; | |
12 import 'package:analyzer/src/generated/constant.dart' | 12 import 'package:analyzer/src/generated/constant.dart' |
13 show DartObject, EvaluationResultImpl; | 13 show DartObject, EvaluationResultImpl; |
14 import 'package:analyzer/src/generated/engine.dart' | 14 import 'package:analyzer/src/generated/engine.dart' |
15 show AnalysisContext, AnalysisEngine, AnalysisException; | 15 show AnalysisContext, AnalysisEngine, AnalysisException; |
16 import 'package:analyzer/src/generated/java_core.dart'; | 16 import 'package:analyzer/src/generated/java_core.dart'; |
17 import 'package:analyzer/src/generated/java_engine.dart'; | 17 import 'package:analyzer/src/generated/java_engine.dart'; |
18 import 'package:analyzer/src/generated/source.dart'; | 18 import 'package:analyzer/src/generated/source.dart'; |
19 import 'package:analyzer/src/generated/utilities_dart.dart'; | 19 import 'package:analyzer/src/generated/utilities_dart.dart'; |
20 | 20 |
21 /** | 21 /** |
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
959 bool get isStatic => baseElement.isStatic; | 959 bool get isStatic => baseElement.isStatic; |
960 | 960 |
961 @override | 961 @override |
962 void visitChildren(ElementVisitor visitor) { | 962 void visitChildren(ElementVisitor visitor) { |
963 // TODO(brianwilkerson) We need to finish implementing the accessors used | 963 // TODO(brianwilkerson) We need to finish implementing the accessors used |
964 // below so that we can safely invoke them. | 964 // below so that we can safely invoke them. |
965 super.visitChildren(visitor); | 965 super.visitChildren(visitor); |
966 safelyVisitChild(baseElement.initializer, visitor); | 966 safelyVisitChild(baseElement.initializer, visitor); |
967 } | 967 } |
968 } | 968 } |
OLD | NEW |