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

Side by Side Diff: pkg/analysis_services/lib/constants.dart

Issue 449213002: Rework "analysis.updateContent" analysis server request. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 services.constants; 5 library services.constants;
6 6
7 // 7 //
8 // Property names 8 // Property names
9 // 9 //
10 const String ADD = 'add';
10 const String ADDED = 'added'; 11 const String ADDED = 'added';
12 const String CHANGE = 'change';
11 const String CHILDREN = 'children'; 13 const String CHILDREN = 'children';
12 const String CLASS_ELEMENT = 'classElement'; 14 const String CLASS_ELEMENT = 'classElement';
13 const String CLASS_NAME = 'className'; 15 const String CLASS_NAME = 'className';
14 const String COMPLETION = 'completion'; 16 const String COMPLETION = 'completion';
15 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; 17 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName';
16 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; 18 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath';
17 const String CONTENT = 'content'; 19 const String CONTENT = 'content';
18 const String CORRECTION = 'correction'; 20 const String CORRECTION = 'correction';
19 const String DART_DOC = 'dartdoc'; 21 const String DART_DOC = 'dartdoc';
20 const String DEFAULT = 'default'; 22 const String DEFAULT = 'default';
(...skipping 23 matching lines...) Expand all
44 const String IS_STATIC = 'isStatic'; 46 const String IS_STATIC = 'isStatic';
45 const String KIND = 'kind'; 47 const String KIND = 'kind';
46 const String LAST = 'last'; 48 const String LAST = 'last';
47 const String LENGTH = 'length'; 49 const String LENGTH = 'length';
48 const String LINKED_EDIT_GROUPS = 'linkedEditGroups'; 50 const String LINKED_EDIT_GROUPS = 'linkedEditGroups';
49 const String LOCATION = 'location'; 51 const String LOCATION = 'location';
50 const String MEMBER_ELEMENT = 'memberElement'; 52 const String MEMBER_ELEMENT = 'memberElement';
51 const String MESSAGE = 'message'; 53 const String MESSAGE = 'message';
52 const String MIXINS = 'mixins'; 54 const String MIXINS = 'mixins';
53 const String NAME = 'name'; 55 const String NAME = 'name';
54 const String NEW_LENGTH = 'newLength';
55 const String OCCURRENCES = 'occurrences'; 56 const String OCCURRENCES = 'occurrences';
56 const String OFFSET = 'offset'; 57 const String OFFSET = 'offset';
57 const String OFFSETS = 'offsets'; 58 const String OFFSETS = 'offsets';
58 const String OLD_LENGTH = 'oldLength'; 59 const String OLD_LENGTH = 'oldLength';
59 const String OPTIONS = 'options'; 60 const String OPTIONS = 'options';
60 const String OUTLINE = 'outline'; 61 const String OUTLINE = 'outline';
61 const String OVERRIDES = 'overrides'; 62 const String OVERRIDES = 'overrides';
62 const String PARAMETER = 'parameter'; 63 const String PARAMETER = 'parameter';
63 const String PARAMETERS = 'parameters'; 64 const String PARAMETERS = 'parameters';
64 const String PATH = 'path'; 65 const String PATH = 'path';
65 const String PATTERN = 'pattern'; 66 const String PATTERN = 'pattern';
66 const String POSITIONS = 'positions'; 67 const String POSITIONS = 'positions';
67 const String PROPAGATED_TYPE = 'propagatedType'; 68 const String PROPAGATED_TYPE = 'propagatedType';
68 const String REFACTORINGS = 'refactorings'; 69 const String REFACTORINGS = 'refactorings';
69 const String REGIONS = 'regions'; 70 const String REGIONS = 'regions';
70 const String RELEVANCE = 'relevance'; 71 const String RELEVANCE = 'relevance';
72 const String REMOVE = 'remove';
71 const String REMOVED = 'removed'; 73 const String REMOVED = 'removed';
72 const String REPLACEMENT = 'relacement'; 74 const String REPLACEMENT = 'replacement';
73 const String REPLACEMENT_OFFSET = 'replacementOffset'; 75 const String REPLACEMENT_OFFSET = 'replacementOffset';
74 const String REPLACEMENT_LENGTH = 'replacementLength'; 76 const String REPLACEMENT_LENGTH = 'replacementLength';
75 const String RETURN_TYPE = 'returnType'; 77 const String RETURN_TYPE = 'returnType';
76 const String RESULTS = 'results'; 78 const String RESULTS = 'results';
77 const String SELECTION = 'selection'; 79 const String SELECTION = 'selection';
78 const String SEVERITY = 'severity'; 80 const String SEVERITY = 'severity';
79 const String SELECTION_LENGTH = 'selectionLength'; 81 const String SELECTION_LENGTH = 'selectionLength';
80 const String SELECTION_OFFSET = 'selectionOffset'; 82 const String SELECTION_OFFSET = 'selectionOffset';
81 const String STACK_TRACE = 'stackTrace'; 83 const String STACK_TRACE = 'stackTrace';
82 const String START_COLUMN = 'startColumn'; 84 const String START_COLUMN = 'startColumn';
83 const String START_LINE = 'startLine'; 85 const String START_LINE = 'startLine';
84 const String STATIC_TYPE = 'staticType'; 86 const String STATIC_TYPE = 'staticType';
85 const String SUBCLASSES = 'subclasses'; 87 const String SUBCLASSES = 'subclasses';
86 const String SUBSCRIPTIONS = 'subscriptions'; 88 const String SUBSCRIPTIONS = 'subscriptions';
87 const String SUGGESTIONS = 'suggestions'; 89 const String SUGGESTIONS = 'suggestions';
88 const String SUPERCLASS = 'superclass'; 90 const String SUPERCLASS = 'superclass';
89 const String SUPER_CLASS_MEMBER = 'superclassMember'; 91 const String SUPER_CLASS_MEMBER = 'superclassMember';
90 const String TARGETS = 'targets'; 92 const String TARGETS = 'targets';
91 const String TYPE = 'type'; 93 const String TYPE = 'type';
92 const String VALUE = 'value'; 94 const String VALUE = 'value';
93 const String VERSION = 'version'; 95 const String VERSION = 'version';
OLDNEW
« pkg/analysis_server/tool/spec/spec_input.html ('K') | « pkg/analysis_server/tool/spec/to_html.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698