| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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.task.dart; | 5 library analyzer.task.dart; |
| 6 | 6 |
| 7 import 'package:analyzer/src/generated/ast.dart'; | 7 import 'package:analyzer/src/generated/ast.dart'; |
| 8 import 'package:analyzer/src/generated/element.dart'; | 8 import 'package:analyzer/src/generated/element.dart'; |
| 9 import 'package:analyzer/src/generated/error.dart'; | 9 import 'package:analyzer/src/generated/error.dart'; |
| 10 import 'package:analyzer/src/generated/scanner.dart'; | 10 import 'package:analyzer/src/generated/scanner.dart'; |
| 11 import 'package:analyzer/src/generated/source.dart'; | 11 import 'package:analyzer/src/generated/source.dart'; |
| 12 import 'package:analyzer/src/generated/utilities_general.dart'; | 12 import 'package:analyzer/src/generated/utilities_general.dart'; |
| 13 import 'package:analyzer/src/task/dart.dart'; | 13 import 'package:analyzer/src/task/dart.dart'; |
| 14 import 'package:analyzer/task/model.dart'; | 14 import 'package:analyzer/task/model.dart'; |
| 15 | 15 |
| 16 /** | 16 /** |
| 17 * The analysis errors associated with a target. | 17 * The analysis errors associated with a target. |
| 18 * | 18 * |
| 19 * The result is only available for targets representing a Dart compilation unit
. | 19 * The result is only available for targets representing a Dart compilation unit
. |
| 20 */ | 20 */ |
| 21 final ResultDescriptor<List<AnalysisError>> DART_ERRORS = | 21 final ListResultDescriptor<AnalysisError> DART_ERRORS = |
| 22 new ResultDescriptor<List<AnalysisError>>( | 22 new ListResultDescriptor<AnalysisError>( |
| 23 'DART_ERRORS', AnalysisError.NO_ERRORS); | 23 'DART_ERRORS', AnalysisError.NO_ERRORS); |
| 24 | 24 |
| 25 /** | 25 /** |
| 26 * The sources of the libraries that are explicitly imported into a library. | 26 * The sources of the libraries that are explicitly imported into a library. |
| 27 * | 27 * |
| 28 * The list will be empty if there are no explicit imports, but will not be | 28 * The list will be empty if there are no explicit imports, but will not be |
| 29 * `null`. | 29 * `null`. |
| 30 * | 30 * |
| 31 * The result is only available for targets representing a Dart library. | 31 * The result is only available for targets representing a Dart library. |
| 32 */ | 32 */ |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 @override | 171 @override |
| 172 bool operator ==(other) { | 172 bool operator ==(other) { |
| 173 return other is LibrarySpecificUnit && | 173 return other is LibrarySpecificUnit && |
| 174 other.library == library && | 174 other.library == library && |
| 175 other.unit == unit; | 175 other.unit == unit; |
| 176 } | 176 } |
| 177 | 177 |
| 178 @override | 178 @override |
| 179 String toString() => '$unit in $library'; | 179 String toString() => '$unit in $library'; |
| 180 } | 180 } |
| OLD | NEW |