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

Unified Diff: pkg/analysis_server/lib/src/constants.dart

Issue 319523004: Outline notification implementation in server. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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
Index: pkg/analysis_server/lib/src/constants.dart
diff --git a/pkg/analysis_server/lib/src/constants.dart b/pkg/analysis_server/lib/src/constants.dart
index 32f5d8a5e348b799264d9f318292a5f89ba6ebd1..cff99d8c11ccc1edd5bc0bac1da2ab2467308709 100644
--- a/pkg/analysis_server/lib/src/constants.dart
+++ b/pkg/analysis_server/lib/src/constants.dart
@@ -40,15 +40,25 @@ const String NOTIFICATION_OUTLINE = 'analysis.outline';
const String ADDED = 'added';
+const String ARGUMENTS = 'arguments';
+const String CHILDREN = 'children';
const String CONTENT = 'content';
const String DEFAULT = 'default';
+const String ELEMENT_LENGTH = 'elementLength';
+const String ELEMENT_OFFSET = 'elementOffset';
const String EXCLUDED = 'excluded';
const String ERRORS = 'errors';
const String FILE = 'file';
const String FILES = 'files';
const String FIXES = 'fixes';
const String INCLUDED = 'included';
+const String IS_ABSTRACT = 'isAbstract';
+const String IS_STATIC = 'isStatic';
+const String KIND = 'kind';
const String LENGTH = 'length';
+const String NAME = 'name';
+const String NAME_LENGTH = 'nameLength';
+const String NAME_OFFSET = 'nameOffset';
const String NEW_LENGTH = 'newLength';
const String OFFSET = 'offset';
const String OLD_LENGTH = 'oldLength';
@@ -57,6 +67,7 @@ const String OUTLINE = 'outline';
const String REFACTORINGS = 'refactorings';
const String REGIONS = 'regions';
const String REMOVED = 'removed';
+const String RETURN_TYPE = 'returnType';
const String SUBSCRIPTIONS = 'subscriptions';
const String VERSION = 'version';

Powered by Google App Engine
This is Rietveld 408576698