| 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 server.constants; | 5 library server.constants; |
| 6 | 6 |
| 7 // | 7 // |
| 8 // Server methods | 8 // Server methods |
| 9 // | 9 // |
| 10 const String SERVER_GET_VERSION = 'server.getVersion'; | 10 const String SERVER_GET_VERSION = 'server.getVersion'; |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 const String STACK_TRACE = 'stackTrace'; | 178 const String STACK_TRACE = 'stackTrace'; |
| 179 const String START_COLUMN = 'startColumn'; | 179 const String START_COLUMN = 'startColumn'; |
| 180 const String START_LINE = 'startLine'; | 180 const String START_LINE = 'startLine'; |
| 181 const String STATIC_TYPE = 'staticType'; | 181 const String STATIC_TYPE = 'staticType'; |
| 182 const String SUBCLASSES = 'subclasses'; | 182 const String SUBCLASSES = 'subclasses'; |
| 183 const String SUBSCRIPTIONS = 'subscriptions'; | 183 const String SUBSCRIPTIONS = 'subscriptions'; |
| 184 const String SUGGESTIONS = 'suggestions'; | 184 const String SUGGESTIONS = 'suggestions'; |
| 185 const String SUPERCLASS = 'superclass'; | 185 const String SUPERCLASS = 'superclass'; |
| 186 const String SUPER_CLASS_MEMBER = 'superclassMember'; | 186 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 187 const String TARGETS = 'targets'; | 187 const String TARGETS = 'targets'; |
| 188 const String TIME = 'time'; |
| 188 const String TYPE = 'type'; | 189 const String TYPE = 'type'; |
| 189 const String VALUE = 'value'; | 190 const String VALUE = 'value'; |
| 190 const String VERSION = 'version'; | 191 const String VERSION = 'version'; |
| OLD | NEW |