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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 constants; 5 library constants;
6 6
7 7
8 // 8 //
9 // Server methods 9 // Server methods
10 // 10 //
(...skipping 22 matching lines...) Expand all
33 // 33 //
34 // Analysis notifications 34 // Analysis notifications
35 // 35 //
36 const String NOTIFICATION_ERRORS = 'analysis.errors'; 36 const String NOTIFICATION_ERRORS = 'analysis.errors';
37 const String NOTIFICATION_HIGHLIGHTS = 'analysis.highlights'; 37 const String NOTIFICATION_HIGHLIGHTS = 'analysis.highlights';
38 const String NOTIFICATION_NAVIGATION = 'analysis.navigation'; 38 const String NOTIFICATION_NAVIGATION = 'analysis.navigation';
39 const String NOTIFICATION_OUTLINE = 'analysis.outline'; 39 const String NOTIFICATION_OUTLINE = 'analysis.outline';
40 40
41 41
42 const String ADDED = 'added'; 42 const String ADDED = 'added';
43 const String ARGUMENTS = 'arguments';
44 const String CHILDREN = 'children';
43 const String CONTENT = 'content'; 45 const String CONTENT = 'content';
44 const String DEFAULT = 'default'; 46 const String DEFAULT = 'default';
47 const String ELEMENT_LENGTH = 'elementLength';
48 const String ELEMENT_OFFSET = 'elementOffset';
45 const String EXCLUDED = 'excluded'; 49 const String EXCLUDED = 'excluded';
46 const String ERRORS = 'errors'; 50 const String ERRORS = 'errors';
47 const String FILE = 'file'; 51 const String FILE = 'file';
48 const String FILES = 'files'; 52 const String FILES = 'files';
49 const String FIXES = 'fixes'; 53 const String FIXES = 'fixes';
50 const String INCLUDED = 'included'; 54 const String INCLUDED = 'included';
55 const String IS_ABSTRACT = 'isAbstract';
56 const String IS_STATIC = 'isStatic';
57 const String KIND = 'kind';
51 const String LENGTH = 'length'; 58 const String LENGTH = 'length';
59 const String NAME = 'name';
60 const String NAME_LENGTH = 'nameLength';
61 const String NAME_OFFSET = 'nameOffset';
52 const String NEW_LENGTH = 'newLength'; 62 const String NEW_LENGTH = 'newLength';
53 const String OFFSET = 'offset'; 63 const String OFFSET = 'offset';
54 const String OLD_LENGTH = 'oldLength'; 64 const String OLD_LENGTH = 'oldLength';
55 const String OPTIONS = 'options'; 65 const String OPTIONS = 'options';
56 const String OUTLINE = 'outline'; 66 const String OUTLINE = 'outline';
57 const String REFACTORINGS = 'refactorings'; 67 const String REFACTORINGS = 'refactorings';
58 const String REGIONS = 'regions'; 68 const String REGIONS = 'regions';
59 const String REMOVED = 'removed'; 69 const String REMOVED = 'removed';
70 const String RETURN_TYPE = 'returnType';
60 const String SUBSCRIPTIONS = 'subscriptions'; 71 const String SUBSCRIPTIONS = 'subscriptions';
61 const String VERSION = 'version'; 72 const String VERSION = 'version';
62 73
63 74
64 // TODO(scheglov) remove it with ContextDomain 75 // TODO(scheglov) remove it with ContextDomain
65 const String APPLY_CHANGES_NAME = 'context.applyChanges'; 76 const String APPLY_CHANGES_NAME = 'context.applyChanges';
66 const String GET_FIXES_NAME = 'context.getFixes'; 77 const String GET_FIXES_NAME = 'context.getFixes';
67 const String SET_OPTIONS_NAME = 'context.setOptions'; 78 const String SET_OPTIONS_NAME = 'context.setOptions';
68 const String SET_PRIORITY_SOURCES_NAME = 'context.setPrioritySources'; 79 const String SET_PRIORITY_SOURCES_NAME = 'context.setPrioritySources';
69 const String CHANGES_PARAM = 'changes'; 80 const String CHANGES_PARAM = 'changes';
70 const String CONTEXT_ID_PARAM = 'contextId'; 81 const String CONTEXT_ID_PARAM = 'contextId';
71 const String MODIFIED_PARAM = "modified"; 82 const String MODIFIED_PARAM = "modified";
72 const String SOURCES_PARAM = 'sources'; 83 const String SOURCES_PARAM = 'sources';
73 const String CACHE_SIZE_OPTION = 'cacheSize'; 84 const String CACHE_SIZE_OPTION = 'cacheSize';
74 const String GENERATE_HINTS_OPTION = 'generateHints'; 85 const String GENERATE_HINTS_OPTION = 'generateHints';
75 const String GENERATE_DART2JS_OPTION = 'generateDart2jsHints'; 86 const String GENERATE_DART2JS_OPTION = 'generateDart2jsHints';
76 const String PROVIDE_ERRORS_OPTION = 'provideErrors'; 87 const String PROVIDE_ERRORS_OPTION = 'provideErrors';
77 const String PROVIDE_NAVIGATION_OPTION = 'provideNavigation'; 88 const String PROVIDE_NAVIGATION_OPTION = 'provideNavigation';
78 const String PROVIDE_OUTLINE_OPTION = 'provideOutline'; 89 const String PROVIDE_OUTLINE_OPTION = 'provideOutline';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698