Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Unified Diff: pkg/analyzer/lib/src/task/dart.dart

Issue 1131983002: Clean-up result descriptors (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/analyzer/lib/task/dart.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/task/dart.dart
diff --git a/pkg/analyzer/lib/src/task/dart.dart b/pkg/analyzer/lib/src/task/dart.dart
index fb1e42e901cf2ec3819ba80977a3e224db76868e..4b88e7df31b04b55abc226ba834cd80a91e57cc7 100644
--- a/pkg/analyzer/lib/src/task/dart.dart
+++ b/pkg/analyzer/lib/src/task/dart.dart
@@ -38,8 +38,8 @@ const ResultCachingPolicy AST_CACHING_POLICY =
*
* The result is only available for targets representing a Dart library.
*/
-final ResultDescriptor<List<AnalysisError>> BUILD_DIRECTIVES_ERRORS =
- new ResultDescriptor<List<AnalysisError>>(
+final ListResultDescriptor<AnalysisError> BUILD_DIRECTIVES_ERRORS =
+ new ListResultDescriptor<AnalysisError>(
'BUILD_DIRECTIVES_ERRORS', AnalysisError.NO_ERRORS);
/**
@@ -49,8 +49,8 @@ final ResultDescriptor<List<AnalysisError>> BUILD_DIRECTIVES_ERRORS =
*
* The result is only available for targets representing a Dart library.
*/
-final ResultDescriptor<List<AnalysisError>> BUILD_FUNCTION_TYPE_ALIASES_ERRORS =
- new ResultDescriptor<List<AnalysisError>>(
+final ListResultDescriptor<AnalysisError> BUILD_FUNCTION_TYPE_ALIASES_ERRORS =
+ new ListResultDescriptor<AnalysisError>(
'BUILD_FUNCTION_TYPE_ALIASES_ERRORS', AnalysisError.NO_ERRORS);
/**
@@ -60,8 +60,8 @@ final ResultDescriptor<List<AnalysisError>> BUILD_FUNCTION_TYPE_ALIASES_ERRORS =
*
* The result is only available for targets representing a Dart library.
*/
-final ResultDescriptor<List<AnalysisError>> BUILD_LIBRARY_ERRORS =
- new ResultDescriptor<List<AnalysisError>>(
+final ListResultDescriptor<AnalysisError> BUILD_LIBRARY_ERRORS =
+ new ListResultDescriptor<AnalysisError>(
'BUILD_LIBRARY_ERRORS', AnalysisError.NO_ERRORS);
/**
@@ -84,8 +84,8 @@ final ResultDescriptor<CompilationUnitElement> COMPILATION_UNIT_ELEMENT =
/**
* The [ConstructorElement]s of a [ClassElement].
*/
-final ResultDescriptor<List<ConstructorElement>> CONSTRUCTORS =
- new ResultDescriptor<List<ConstructorElement>>('CONSTRUCTORS', null);
+final ListResultDescriptor<ConstructorElement> CONSTRUCTORS =
+ new ListResultDescriptor<ConstructorElement>('CONSTRUCTORS', null);
/**
* The errors produced while building a [ClassElement] constructors.
@@ -94,8 +94,8 @@ final ResultDescriptor<List<ConstructorElement>> CONSTRUCTORS =
*
* The result is only available for targets representing a [ClassElement].
*/
-final ResultDescriptor<List<AnalysisError>> CONSTRUCTORS_ERRORS =
- new ResultDescriptor<List<AnalysisError>>(
+final ListResultDescriptor<AnalysisError> CONSTRUCTORS_ERRORS =
+ new ListResultDescriptor<AnalysisError>(
'CONSTRUCTORS_ERRORS', AnalysisError.NO_ERRORS);
/**
@@ -128,8 +128,8 @@ final ListResultDescriptor<Source> EXPORT_SOURCE_CLOSURE =
*
* The result is only available for targets representing a Dart compilation unit.
*/
-final ResultDescriptor<List<AnalysisError>> HINTS =
- new ResultDescriptor<List<AnalysisError>>(
+final ListResultDescriptor<AnalysisError> HINTS =
+ new ListResultDescriptor<AnalysisError>(
'HINT_ERRORS', AnalysisError.NO_ERRORS);
/**
@@ -208,8 +208,8 @@ final ResultDescriptor<LibraryElement> LIBRARY_ELEMENT5 =
* The result is only available for targets representing a Dart compilation unit
* in a specific library.
*/
-final ResultDescriptor<List<AnalysisError>> LIBRARY_UNIT_ERRORS =
- new ResultDescriptor<List<AnalysisError>>(
+final ListResultDescriptor<AnalysisError> LIBRARY_UNIT_ERRORS =
+ new ListResultDescriptor<AnalysisError>(
'LIBRARY_UNIT_ERRORS', AnalysisError.NO_ERRORS);
/**
@@ -219,8 +219,8 @@ final ResultDescriptor<List<AnalysisError>> LIBRARY_UNIT_ERRORS =
*
* The result is only available for targets representing a Dart compilation unit.
*/
-final ResultDescriptor<List<AnalysisError>> PARSE_ERRORS =
- new ResultDescriptor<List<AnalysisError>>(
+final ListResultDescriptor<AnalysisError> PARSE_ERRORS =
+ new ListResultDescriptor<AnalysisError>(
'PARSE_ERRORS', AnalysisError.NO_ERRORS);
/**
@@ -230,8 +230,8 @@ final ResultDescriptor<List<AnalysisError>> PARSE_ERRORS =
*
* The result is only available for targets representing a unit.
*/
-final ResultDescriptor<List<AnalysisError>> RESOLVE_REFERENCES_ERRORS =
- new ResultDescriptor<List<AnalysisError>>(
+final ListResultDescriptor<AnalysisError> RESOLVE_REFERENCES_ERRORS =
+ new ListResultDescriptor<AnalysisError>(
'RESOLVE_REFERENCES_ERRORS', AnalysisError.NO_ERRORS);
/**
@@ -241,8 +241,8 @@ final ResultDescriptor<List<AnalysisError>> RESOLVE_REFERENCES_ERRORS =
*
* The result is only available for targets representing a Dart library.
*/
-final ResultDescriptor<List<AnalysisError>> RESOLVE_TYPE_NAMES_ERRORS =
- new ResultDescriptor<List<AnalysisError>>(
+final ListResultDescriptor<AnalysisError> RESOLVE_TYPE_NAMES_ERRORS =
+ new ListResultDescriptor<AnalysisError>(
'RESOLVE_TYPE_NAMES_ERRORS', AnalysisError.NO_ERRORS);
/**
@@ -307,8 +307,8 @@ final ResultDescriptor<CompilationUnit> RESOLVED_UNIT5 =
*
* The result is only available for targets representing a Dart compilation unit.
*/
-final ResultDescriptor<List<AnalysisError>> SCAN_ERRORS =
- new ResultDescriptor<List<AnalysisError>>(
+final ListResultDescriptor<AnalysisError> SCAN_ERRORS =
+ new ListResultDescriptor<AnalysisError>(
'SCAN_ERRORS', AnalysisError.NO_ERRORS);
/**
@@ -344,8 +344,8 @@ final ResultDescriptor<UsedLocalElements> USED_LOCAL_ELEMENTS =
*
* The result is only available for targets representing a Dart compilation unit.
*/
-final ResultDescriptor<List<AnalysisError>> VERIFY_ERRORS =
- new ResultDescriptor<List<AnalysisError>>(
+final ListResultDescriptor<AnalysisError> VERIFY_ERRORS =
+ new ListResultDescriptor<AnalysisError>(
'VERIFY_ERRORS', AnalysisError.NO_ERRORS);
/**
« no previous file with comments | « no previous file | pkg/analyzer/lib/task/dart.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698