a456753267
Change-Id: Ie8dcadc6313b3745ef874954da968839eb460c71 Reviewed-on: https://dart-review.googlesource.com/52020 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
101 lines
3.9 KiB
Dart
101 lines
3.9 KiB
Dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
const String ADD = 'add';
|
|
const String ADDED = 'added';
|
|
const String ASSISTS = 'assists';
|
|
const String CHANGE = 'change';
|
|
const String CHILDREN = 'children';
|
|
const String CLASS_ELEMENT = 'classElement';
|
|
const String CLASS_NAME = 'className';
|
|
const String CODE = 'code';
|
|
const String COMPLETION = 'completion';
|
|
const String COMPLETION_RESULTS = 'completion.results';
|
|
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 DISPLAY_NAME = 'displayName';
|
|
const String EDITS = 'edits';
|
|
const String ELEMENT = 'element'; // boolean
|
|
const String ELEMENT_DESCRIPTION = 'elementDescription'; // boolean
|
|
const String ELEMENT_KIND = 'elementKind'; // boolean
|
|
const String ENABLE_ASYNC = 'enableAsync'; // boolean
|
|
const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean
|
|
const String ENABLE_ENUMS = 'enableEnums';
|
|
const String ERROR = 'error';
|
|
const String ERRORS = 'errors';
|
|
const String EXCLUDED = 'excluded';
|
|
const String FATAL = 'fatal';
|
|
const String FILE = 'file';
|
|
const String FILE_STAMP = 'fileStamp';
|
|
const String FILES = 'files';
|
|
const String FIXES = 'fixes';
|
|
const String FLAGS = 'flags';
|
|
const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints';
|
|
const String GENERATE_HINTS = 'generateHints';
|
|
const String HAS_FIX = 'hasFix';
|
|
const String HIERARCHY_ITEMS = 'hierarchyItems';
|
|
const String HOVERS = 'hovers';
|
|
const String ID = 'id';
|
|
const String INCLUDE_POTENTIAL = 'includePotential';
|
|
const String INCLUDED = 'included';
|
|
const String INTERFACE_MEMBERS = 'interfaceMembers';
|
|
const String INTERFACES = 'interfaces';
|
|
const String IS_ABSTRACT = 'isAbstract';
|
|
const String IS_DEPRECATED = 'isDeprecated';
|
|
const String IS_POTENTIAL = 'isPotential';
|
|
const String IS_STATIC = 'isStatic';
|
|
const String KIND = 'kind';
|
|
const String KINDS = 'kinds';
|
|
const String LAST = 'last';
|
|
const String LENGTH = 'length';
|
|
const String LINKED_EDIT_GROUPS = 'linkedEditGroups';
|
|
const String LOCATION = 'location';
|
|
const String MEMBER_ELEMENT = 'memberElement';
|
|
const String MESSAGE = 'message';
|
|
const String MIXINS = 'mixins';
|
|
const String NAME = 'name';
|
|
const String OCCURRENCES = 'occurrences';
|
|
const String OFFSET = 'offset';
|
|
const String OFFSETS = 'offsets';
|
|
const String OPTIONS = 'options';
|
|
const String OUTLINE = 'outline';
|
|
const String OVERRIDES = 'overrides';
|
|
const String PARAMETER = 'parameter';
|
|
const String PARAMETERS = 'parameters';
|
|
const String PATH = 'path';
|
|
const String PATTERN = 'pattern';
|
|
const String POSITIONS = 'positions';
|
|
const String PROPAGATED_TYPE = 'propagatedType';
|
|
const String REFACTORINGS = 'refactorings';
|
|
const String REGIONS = 'regions';
|
|
const String RELEVANCE = 'relevance';
|
|
const String REMOVE = 'remove';
|
|
const String REMOVED = 'removed';
|
|
const String REPLACEMENT = 'replacement';
|
|
const String REPLACEMENT_LENGTH = 'replacementLength';
|
|
const String REPLACEMENT_OFFSET = 'replacementOffset';
|
|
const String RESULTS = 'results';
|
|
const String RETURN_TYPE = 'returnType';
|
|
const String SELECTION = 'selection';
|
|
const String SELECTION_LENGTH = 'selectionLength';
|
|
const String SELECTION_OFFSET = 'selectionOffset';
|
|
const String SEVERITY = 'severity';
|
|
const String STACK_TRACE = 'stackTrace';
|
|
const String START_COLUMN = 'startColumn';
|
|
const String START_LINE = 'startLine';
|
|
const String STATIC_TYPE = 'staticType';
|
|
const String SUBCLASSES = 'subclasses';
|
|
const String SUBSCRIPTIONS = 'subscriptions';
|
|
const String SUGGESTIONS = 'suggestions';
|
|
const String SUPER_CLASS_MEMBER = 'superclassMember';
|
|
const String SUPERCLASS = 'superclass';
|
|
const String TARGETS = 'targets';
|
|
const String TYPE = 'type';
|
|
const String VALUE = 'value';
|
|
const String VERSION = 'version';
|