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

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

Issue 1139473003: Removed CLASS_ELEMENTS from BuildCompilationUnitElementTask and cleaned up comments (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 | « pkg/analyzer/lib/task/dart.dart ('k') | pkg/analyzer/test/src/task/dart_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/task/general.dart
diff --git a/pkg/analyzer/lib/task/general.dart b/pkg/analyzer/lib/task/general.dart
index 7cf1b97f2d6716e7283b5bc1c41436f10832feca..c40ff4c6be4cd92297dfbdc5b10d1fac3a65f5cb 100644
--- a/pkg/analyzer/lib/task/general.dart
+++ b/pkg/analyzer/lib/task/general.dart
@@ -8,25 +8,19 @@ import 'package:analyzer/src/generated/source.dart';
import 'package:analyzer/task/model.dart';
/**
- * The contents of a single file.
+ * The content of a [Source].
*/
final ResultDescriptor<String> CONTENT =
new ResultDescriptor<String>('CONTENT', null);
/**
- * The line information for a single file.
+ * The line information for a [Source].
*/
final ResultDescriptor<LineInfo> LINE_INFO =
new ResultDescriptor<LineInfo>('LINE_INFO', null);
/**
- * The modification time of a file.
+ * The modification time of a [Source].
*/
final ResultDescriptor<int> MODIFICATION_TIME =
new ResultDescriptor<int>('MODIFICATION_TIME', -1);
-
-/**
- * The kind of a [Source].
- */
-final ResultDescriptor<SourceKind> SOURCE_KIND =
- new ResultDescriptor<SourceKind>('SOURCE_KIND', SourceKind.UNKNOWN);
« no previous file with comments | « pkg/analyzer/lib/task/dart.dart ('k') | pkg/analyzer/test/src/task/dart_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698