| 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 54486f456b5cb4fe527630aa5efd868bf2d192ac..0857fe45232ed0c4f74d3614c112d7b190bf8d53 100644
|
| --- a/pkg/analysis_server/lib/src/constants.dart
|
| +++ b/pkg/analysis_server/lib/src/constants.dart
|
| @@ -21,6 +21,7 @@ const String SERVER_STATUS = 'server.status';
|
| //
|
| // Analysis methods
|
| //
|
| +const String ANALYSIS_GET_HOVER = 'analysis.getHover';
|
| const String ANALYSIS_SET_ANALYSIS_ROOTS = 'analysis.setAnalysisRoots';
|
| const String ANALYSIS_SET_PRIORITY_FILES = 'analysis.setPriorityFiles';
|
| const String ANALYSIS_SET_SUBSCRIPTIONS = 'analysis.setSubscriptions';
|
| @@ -76,10 +77,14 @@ const String EDIT_SET_REFACTORING_OPTIONS = 'edit.setRefactoringOptions';
|
| //
|
| const String ADDED = 'added';
|
| const String CHILDREN = 'children';
|
| +const String CONTAINING_LIBRARY_NAME = 'containingLibraryName';
|
| +const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath';
|
| const String CONTENT = 'content';
|
| const String CORRECTION = 'correction';
|
| +const String DART_DOC = 'dartdoc';
|
| const String DEFAULT = 'default';
|
| const String ELEMENT = 'element';
|
| +const String ELEMENT_DESCRIPTION = 'elementDescription';
|
| const String EXCLUDED = 'excluded';
|
| const String ERROR_CODE = 'errorCode';
|
| const String ERRORS = 'errors';
|
| @@ -87,6 +92,7 @@ const String FILE = 'file';
|
| const String FILES = 'files';
|
| const String FIXES = 'fixes';
|
| const String FLAGS = 'flags';
|
| +const String HOVERS = 'hovers';
|
| const String ID = 'id';
|
| const String INCLUDED = 'included';
|
| const String IS_ABSTRACT = 'isAbstract';
|
| @@ -101,8 +107,10 @@ const String OFFSET = 'offset';
|
| const String OLD_LENGTH = 'oldLength';
|
| const String OPTIONS = 'options';
|
| const String OUTLINE = 'outline';
|
| +const String PARAMETER = 'parameter';
|
| const String PARAMETERS = 'parameters';
|
| const String PATTERN = 'pattern';
|
| +const String PROPAGATED_TYPE = 'propagatedType';
|
| const String REFACTORINGS = 'refactorings';
|
| const String REGIONS = 'regions';
|
| const String REMOVED = 'removed';
|
| @@ -110,6 +118,7 @@ const String RETURN_TYPE = 'returnType';
|
| const String SEVERITY = 'severity';
|
| const String START_COLUMN = 'startColumn';
|
| const String START_LINE = 'startLine';
|
| +const String STATIC_TYPE = 'staticType';
|
| const String SUBSCRIPTIONS = 'subscriptions';
|
| const String TARGETS = 'targets';
|
| const String TYPE = 'type';
|
|
|