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

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

Issue 975453004: Reformat (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 | « pkg/analyzer/lib/src/task/task_dart.dart ('k') | pkg/analyzer/lib/task/model.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/task/dart.dart
diff --git a/pkg/analyzer/lib/task/dart.dart b/pkg/analyzer/lib/task/dart.dart
index 4b016fe99101c65436ad0dc3cf84639dda688239..2bfbdc8c52940851c58e19bef5972f51b550dc9f 100644
--- a/pkg/analyzer/lib/task/dart.dart
+++ b/pkg/analyzer/lib/task/dart.dart
@@ -27,7 +27,8 @@ final ResultDescriptor<CompilationUnit> BUILT_UNIT =
* The result is only available for targets representing a Dart compilation unit.
*/
final ResultDescriptor<CompilationUnitElement> COMPILATION_UNIT_ELEMENT =
- new ResultDescriptor<CompilationUnitElement>('COMPILATION_UNIT_ELEMENT', null);
+ new ResultDescriptor<CompilationUnitElement>(
+ 'COMPILATION_UNIT_ELEMENT', null);
/**
* The sources of the libraries that are exported from a library.
@@ -38,7 +39,8 @@ final ResultDescriptor<CompilationUnitElement> COMPILATION_UNIT_ELEMENT =
* The result is only available for targets representing a Dart library.
*/
final ResultDescriptor<List<Source>> EXPORTED_LIBRARIES =
- new ResultDescriptor<List<Source>>('EXPORTED_LIBRARIES', Source.EMPTY_ARRAY);
+ new ResultDescriptor<List<Source>>(
+ 'EXPORTED_LIBRARIES', Source.EMPTY_ARRAY);
/**
* The sources of the libraries that are imported into a library.
@@ -49,7 +51,8 @@ final ResultDescriptor<List<Source>> EXPORTED_LIBRARIES =
* The result is only available for targets representing a Dart library.
*/
final ResultDescriptor<List<Source>> IMPORTED_LIBRARIES =
- new ResultDescriptor<List<Source>>('IMPORTED_LIBRARIES', Source.EMPTY_ARRAY);
+ new ResultDescriptor<List<Source>>(
+ 'IMPORTED_LIBRARIES', Source.EMPTY_ARRAY);
/**
* The sources of the parts that are included in a library.
@@ -71,8 +74,7 @@ final ResultDescriptor<List<Source>> INCLUDED_PARTS =
*/
final ResultDescriptor<List<AnalysisError>> PARSE_ERRORS =
new ResultDescriptor<List<AnalysisError>>(
- 'PARSE_ERRORS',
- AnalysisError.NO_ERRORS,
+ 'PARSE_ERRORS', AnalysisError.NO_ERRORS,
contributesTo: ANALYSIS_ERRORS);
/**
@@ -94,9 +96,7 @@ final ResultDescriptor<CompilationUnit> PARSED_UNIT =
*/
final ResultDescriptor<List<AnalysisError>> SCAN_ERRORS =
new ResultDescriptor<List<AnalysisError>>(
- 'SCAN_ERRORS',
- AnalysisError.NO_ERRORS,
- contributesTo: ANALYSIS_ERRORS);
+ 'SCAN_ERRORS', AnalysisError.NO_ERRORS, contributesTo: ANALYSIS_ERRORS);
/**
* The token stream produced while scanning a compilation unit.
« no previous file with comments | « pkg/analyzer/lib/src/task/task_dart.dart ('k') | pkg/analyzer/lib/task/model.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698