| OLD | NEW |
| 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 ADD = 'add'; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 const String ID = 'id'; | 38 const String ID = 'id'; |
| 39 const String INCLUDE_POTENTIAL = 'includePotential'; | 39 const String INCLUDE_POTENTIAL = 'includePotential'; |
| 40 const String INCLUDED = 'included'; | 40 const String INCLUDED = 'included'; |
| 41 const String INTERFACE_MEMBERS = 'interfaceMembers'; | 41 const String INTERFACE_MEMBERS = 'interfaceMembers'; |
| 42 const String INTERFACES = 'interfaces'; | 42 const String INTERFACES = 'interfaces'; |
| 43 const String IS_ABSTRACT = 'isAbstract'; | 43 const String IS_ABSTRACT = 'isAbstract'; |
| 44 const String IS_DEPRECATED = 'isDeprecated'; | 44 const String IS_DEPRECATED = 'isDeprecated'; |
| 45 const String IS_POTENTIAL = 'isPotential'; | 45 const String IS_POTENTIAL = 'isPotential'; |
| 46 const String IS_STATIC = 'isStatic'; | 46 const String IS_STATIC = 'isStatic'; |
| 47 const String KIND = 'kind'; | 47 const String KIND = 'kind'; |
| 48 const String KINDS = 'kinds'; |
| 48 const String LAST = 'last'; | 49 const String LAST = 'last'; |
| 49 const String LENGTH = 'length'; | 50 const String LENGTH = 'length'; |
| 50 const String LINKED_EDIT_GROUPS = 'linkedEditGroups'; | 51 const String LINKED_EDIT_GROUPS = 'linkedEditGroups'; |
| 51 const String LOCATION = 'location'; | 52 const String LOCATION = 'location'; |
| 52 const String MEMBER_ELEMENT = 'memberElement'; | 53 const String MEMBER_ELEMENT = 'memberElement'; |
| 53 const String MESSAGE = 'message'; | 54 const String MESSAGE = 'message'; |
| 54 const String MIXINS = 'mixins'; | 55 const String MIXINS = 'mixins'; |
| 55 const String NAME = 'name'; | 56 const String NAME = 'name'; |
| 56 const String OCCURRENCES = 'occurrences'; | 57 const String OCCURRENCES = 'occurrences'; |
| 57 const String OFFSET = 'offset'; | 58 const String OFFSET = 'offset'; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 85 const String STATIC_TYPE = 'staticType'; | 86 const String STATIC_TYPE = 'staticType'; |
| 86 const String SUBCLASSES = 'subclasses'; | 87 const String SUBCLASSES = 'subclasses'; |
| 87 const String SUBSCRIPTIONS = 'subscriptions'; | 88 const String SUBSCRIPTIONS = 'subscriptions'; |
| 88 const String SUGGESTIONS = 'suggestions'; | 89 const String SUGGESTIONS = 'suggestions'; |
| 89 const String SUPERCLASS = 'superclass'; | 90 const String SUPERCLASS = 'superclass'; |
| 90 const String SUPER_CLASS_MEMBER = 'superclassMember'; | 91 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 91 const String TARGETS = 'targets'; | 92 const String TARGETS = 'targets'; |
| 92 const String TYPE = 'type'; | 93 const String TYPE = 'type'; |
| 93 const String VALUE = 'value'; | 94 const String VALUE = 'value'; |
| 94 const String VERSION = 'version'; | 95 const String VERSION = 'version'; |
| OLD | NEW |