Chromium Code Reviews| 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 const String ANALYSIS_SERVER_VERSION = '0.0.1'; | |
|
Brian Wilkerson
2015/01/17 18:08:24
On an experimental branch that I'm working on I ra
danrubel
2015/01/20 17:23:54
That works for me. Moved.
| |
| 8 | |
| 7 // | 9 // |
| 8 // Server methods | 10 // Server methods |
| 9 // | 11 // |
| 10 const String SERVER_GET_VERSION = 'server.getVersion'; | 12 const String SERVER_GET_VERSION = 'server.getVersion'; |
| 11 const String SERVER_SHUTDOWN = 'server.shutdown'; | 13 const String SERVER_SHUTDOWN = 'server.shutdown'; |
| 12 const String SERVER_SET_SUBSCRIPTIONS = 'server.setSubscriptions'; | 14 const String SERVER_SET_SUBSCRIPTIONS = 'server.setSubscriptions'; |
| 13 | 15 |
| 14 // | 16 // |
| 15 // Server notifications | 17 // Server notifications |
| 16 // | 18 // |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 181 const String STATIC_TYPE = 'staticType'; | 183 const String STATIC_TYPE = 'staticType'; |
| 182 const String SUBCLASSES = 'subclasses'; | 184 const String SUBCLASSES = 'subclasses'; |
| 183 const String SUBSCRIPTIONS = 'subscriptions'; | 185 const String SUBSCRIPTIONS = 'subscriptions'; |
| 184 const String SUGGESTIONS = 'suggestions'; | 186 const String SUGGESTIONS = 'suggestions'; |
| 185 const String SUPERCLASS = 'superclass'; | 187 const String SUPERCLASS = 'superclass'; |
| 186 const String SUPER_CLASS_MEMBER = 'superclassMember'; | 188 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 187 const String TARGETS = 'targets'; | 189 const String TARGETS = 'targets'; |
| 188 const String TYPE = 'type'; | 190 const String TYPE = 'type'; |
| 189 const String VALUE = 'value'; | 191 const String VALUE = 'value'; |
| 190 const String VERSION = 'version'; | 192 const String VERSION = 'version'; |
| OLD | NEW |