| OLD | NEW |
| 1 # Dart VM Service Protocol | 1 # Dart VM Service Protocol |
| 2 | 2 |
| 3 NOTE: The service api is still changing rapidly. If you use the | 3 NOTE: The service api is still changing rapidly. If you use the |
| 4 service api, expect to encounter non-compatible changes. | 4 service api, expect to encounter non-compatible changes. |
| 5 | 5 |
| 6 Description | 6 Description |
| 7 How to start | 7 How to start |
| 8 JSON | 8 JSON |
| 9 Websocket | 9 Websocket |
| 10 | 10 |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 141 |
| 142 Some properties returned by the VM Service begin with an underscore | 142 Some properties returned by the VM Service begin with an underscore |
| 143 (<code>_</code>) character. These properties are called _private | 143 (<code>_</code>) character. These properties are called _private |
| 144 properties_. Private properties provide private information about the | 144 properties_. Private properties provide private information about the |
| 145 VM's implementation. Private properties may be added, removed, or | 145 VM's implementation. Private properties may be added, removed, or |
| 146 changed at any time with any release of the VM. They are provided for | 146 changed at any time with any release of the VM. They are provided for |
| 147 those tools that need this level of internal access, such as the | 147 those tools that need this level of internal access, such as the |
| 148 Observatory. | 148 Observatory. |
| 149 | 149 |
| 150 For example, some responses will have the <code>_vmType</code> | 150 For example, some responses will have the <code>_vmType</code> |
| 151 nnnproperty. This provides the VM-internal type name of an object, and | 151 property. This provides the VM-internal type name of an object, and |
| 152 is provided only when this type name differs from the | 152 is provided only when this type name differs from the |
| 153 <code>type</code> property. | 153 <code>type</code> property. |
| 154 | 154 |
| 155 ## Events | 155 ## Events |
| 156 | 156 |
| 157 TODO | 157 TODO |
| 158 | 158 |
| 159 ## Catalog of Types | 159 ## Catalog of Types |
| 160 | 160 |
| 161 ### <a name="AbstractType"></a>AbstractType | 161 ### <a name="AbstractType"></a>AbstractType |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 | targetCPU | String | | 533 | targetCPU | String | |
| 534 | hostCPU | String | | 534 | hostCPU | String | |
| 535 | date | String | kill? | | 535 | date | String | kill? | |
| 536 | version | String | | 536 | version | String | |
| 537 | pid | int | | 537 | pid | int | |
| 538 | assertsEnabled | bool | TODO: move to features? | | 538 | assertsEnabled | bool | TODO: move to features? | |
| 539 | typeChecksEnabled | bool | TODO: move to features? | | 539 | typeChecksEnabled | bool | TODO: move to features? | |
| 540 | uptime | double | seconds since vm started | | 540 | uptime | double | seconds since vm started | |
| 541 | "isolates" | List of [@Isolate](#Isolate) | | 541 | "isolates" | List of [@Isolate](#Isolate) | |
| 542 | 542 |
| OLD | NEW |