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

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

Issue 422573003: Implementation of the 'search.getTypeHierarchy' API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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 ADDED = 'added'; 10 const String ADDED = 'added';
11 const String CHILDREN = 'children'; 11 const String CHILDREN = 'children';
12 const String CLASS_ELEMENT = 'classElement';
12 const String COMPLETION = 'completion'; 13 const String COMPLETION = 'completion';
13 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; 14 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName';
14 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; 15 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath';
15 const String CONTENT = 'content'; 16 const String CONTENT = 'content';
16 const String CORRECTION = 'correction'; 17 const String CORRECTION = 'correction';
17 const String DART_DOC = 'dartdoc'; 18 const String DART_DOC = 'dartdoc';
18 const String DEFAULT = 'default'; 19 const String DEFAULT = 'default';
20 const String DISPLAY_NAME = 'displayName';
19 const String EDITS = 'edits'; 21 const String EDITS = 'edits';
20 const String ELEMENT = 'element'; 22 const String ELEMENT = 'element';
21 const String ELEMENT_DESCRIPTION = 'elementDescription'; 23 const String ELEMENT_DESCRIPTION = 'elementDescription';
22 const String ELEMENT_KIND = 'elementKind'; 24 const String ELEMENT_KIND = 'elementKind';
23 const String EXCLUDED = 'excluded'; 25 const String EXCLUDED = 'excluded';
24 const String ERROR = 'error'; 26 const String ERROR = 'error';
25 const String ERRORS = 'errors'; 27 const String ERRORS = 'errors';
26 const String FILE = 'file'; 28 const String FILE = 'file';
27 const String FILES = 'files'; 29 const String FILES = 'files';
28 const String FIXES = 'fixes'; 30 const String FIXES = 'fixes';
29 const String FLAGS = 'flags'; 31 const String FLAGS = 'flags';
32 const String HIERARCHY = 'hierarchy';
30 const String HOVERS = 'hovers'; 33 const String HOVERS = 'hovers';
31 const String ID = 'id'; 34 const String ID = 'id';
32 const String INCLUDE_POTENTIAL = 'includePotential'; 35 const String INCLUDE_POTENTIAL = 'includePotential';
33 const String INCLUDED = 'included'; 36 const String INCLUDED = 'included';
34 const String INTERFACE_ELEMENTS = 'interfaceElements'; 37 const String INTERFACE_ELEMENTS = 'interfaceElements';
38 const String INTERFACES = 'interfaces';
35 const String IS_ABSTRACT = 'isAbstract'; 39 const String IS_ABSTRACT = 'isAbstract';
36 const String IS_DEPRECATED = 'isDeprecated'; 40 const String IS_DEPRECATED = 'isDeprecated';
37 const String IS_POTENTIAL = 'isPotential'; 41 const String IS_POTENTIAL = 'isPotential';
38 const String IS_STATIC = 'isStatic'; 42 const String IS_STATIC = 'isStatic';
39 const String KIND = 'kind'; 43 const String KIND = 'kind';
40 const String LAST = 'last'; 44 const String LAST = 'last';
41 const String LENGTH = 'length'; 45 const String LENGTH = 'length';
42 const String LINKED_POSITION_GROUPS = 'linkedPositionGroups'; 46 const String LINKED_POSITION_GROUPS = 'linkedPositionGroups';
43 const String LOCATION = 'location'; 47 const String LOCATION = 'location';
48 const String MEMBER_ELEMENT = 'memberElement';
44 const String MESSAGE = 'message'; 49 const String MESSAGE = 'message';
50 const String MIXINS = 'mixins';
45 const String NAME = 'name'; 51 const String NAME = 'name';
46 const String NEW_LENGTH = 'newLength'; 52 const String NEW_LENGTH = 'newLength';
47 const String OCCURRENCES = 'occurrences'; 53 const String OCCURRENCES = 'occurrences';
48 const String OFFSET = 'offset'; 54 const String OFFSET = 'offset';
49 const String OFFSETS = 'offsets'; 55 const String OFFSETS = 'offsets';
50 const String OLD_LENGTH = 'oldLength'; 56 const String OLD_LENGTH = 'oldLength';
51 const String OPTIONS = 'options'; 57 const String OPTIONS = 'options';
52 const String OUTLINE = 'outline'; 58 const String OUTLINE = 'outline';
53 const String OVERRIDES = 'overrides'; 59 const String OVERRIDES = 'overrides';
54 const String PARAMETER = 'parameter'; 60 const String PARAMETER = 'parameter';
55 const String PARAMETERS = 'parameters'; 61 const String PARAMETERS = 'parameters';
56 const String PATH = 'path'; 62 const String PATH = 'path';
57 const String PATTERN = 'pattern'; 63 const String PATTERN = 'pattern';
58 const String POSITIONS = 'positions'; 64 const String POSITIONS = 'positions';
59 const String PROPAGATED_TYPE = 'propagatedType'; 65 const String PROPAGATED_TYPE = 'propagatedType';
60 const String REFACTORINGS = 'refactorings'; 66 const String REFACTORINGS = 'refactorings';
61 const String REGIONS = 'regions'; 67 const String REGIONS = 'regions';
62 const String RELEVANCE = 'relevance'; 68 const String RELEVANCE = 'relevance';
63 const String REMOVED = 'removed'; 69 const String REMOVED = 'removed';
64 const String REPLACEMENT = 'relacement'; 70 const String REPLACEMENT = 'relacement';
65 const String RETURN_TYPE = 'returnType'; 71 const String RETURN_TYPE = 'returnType';
66 const String RESULTS = 'results'; 72 const String RESULTS = 'results';
67 const String SEVERITY = 'severity'; 73 const String SEVERITY = 'severity';
68 const String SELECTION_LENGTH = 'selectionLength'; 74 const String SELECTION_LENGTH = 'selectionLength';
69 const String SELECTION_OFFSET = 'selectionOffset'; 75 const String SELECTION_OFFSET = 'selectionOffset';
70 const String START_COLUMN = 'startColumn'; 76 const String START_COLUMN = 'startColumn';
71 const String START_LINE = 'startLine'; 77 const String START_LINE = 'startLine';
72 const String STATIC_TYPE = 'staticType'; 78 const String STATIC_TYPE = 'staticType';
79 const String SUBCLASSES = 'subclasses';
73 const String SUBSCRIPTIONS = 'subscriptions'; 80 const String SUBSCRIPTIONS = 'subscriptions';
81 const String SUPERCLASS = 'superclass';
74 const String SUPER_CLASS_ELEMENT = 'superclassElement'; 82 const String SUPER_CLASS_ELEMENT = 'superclassElement';
75 const String TARGETS = 'targets'; 83 const String TARGETS = 'targets';
76 const String TYPE = 'type'; 84 const String TYPE = 'type';
77 const String VERSION = 'version'; 85 const String VERSION = 'version';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698