| OLD | NEW |
| 1 Note: this dev version of the protocol contains not yet released functionality, | 1 Note: this dev version of the protocol contains not yet released functionality, |
| 2 and is subject to change. | 2 and is subject to change. |
| 3 | 3 |
| 4 # Dart VM Service Protocol 3.6-dev | 4 # Dart VM Service Protocol 3.6-dev |
| 5 | 5 |
| 6 > Please post feedback to the [observatory-discuss group][discuss-list] | 6 > Please post feedback to the [observatory-discuss group][discuss-list] |
| 7 | 7 |
| 8 This document describes of _version 3.5_ of the Dart VM Service Protocol. This | 8 This document describes of _version 3.5_ of the Dart VM Service Protocol. This |
| 9 protocol is used to communicate with a running Dart Virtual Machine. | 9 protocol is used to communicate with a running Dart Virtual Machine. |
| 10 | 10 |
| (...skipping 1473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1484 } | 1484 } |
| 1485 ``` | 1485 ``` |
| 1486 | 1486 |
| 1487 A _FlagList_ represents the complete set of VM command line flags. | 1487 A _FlagList_ represents the complete set of VM command line flags. |
| 1488 | 1488 |
| 1489 ### Frame | 1489 ### Frame |
| 1490 | 1490 |
| 1491 ``` | 1491 ``` |
| 1492 class Frame extends Response { | 1492 class Frame extends Response { |
| 1493 int index; | 1493 int index; |
| 1494 @Function function; | 1494 @Function function [optional]; |
| 1495 @Code code; | 1495 @Code code [optional]; |
| 1496 SourceLocation location [optional]; | 1496 SourceLocation location [optional]; |
| 1497 BoundVariable[] vars [optional]; | 1497 BoundVariable[] vars [optional]; |
| 1498 FrameKind kind [optional]; | 1498 FrameKind kind [optional]; |
| 1499 } | 1499 } |
| 1500 ``` | 1500 ``` |
| 1501 | 1501 |
| 1502 ### Function | 1502 ### Function |
| 1503 | 1503 |
| 1504 ``` | 1504 ``` |
| 1505 class @Function extends @Object { | 1505 class @Function extends @Object { |
| (...skipping 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2609 2.0 | Describe protocol version 2.0. | 2609 2.0 | Describe protocol version 2.0. |
| 2610 3.0 | Describe protocol version 3.0. Added UnresolvedSourceLocation. Added Sen
tinel return to getIsolate. Add AddedBreakpointWithScriptUri. Removed Isolate.
entry. The type of VM.pid was changed from string to int. Added VMUpdate events
. Add offset and count parameters to getObject() and offset and count fields to
Instance. Added ServiceExtensionAdded event. | 2610 3.0 | Describe protocol version 3.0. Added UnresolvedSourceLocation. Added Sen
tinel return to getIsolate. Add AddedBreakpointWithScriptUri. Removed Isolate.
entry. The type of VM.pid was changed from string to int. Added VMUpdate events
. Add offset and count parameters to getObject() and offset and count fields to
Instance. Added ServiceExtensionAdded event. |
| 2611 3.1 | Add the getSourceReport RPC. The getObject RPC now accepts offset and cou
nt for string objects. String objects now contain length, offset, and count pro
perties. | 2611 3.1 | Add the getSourceReport RPC. The getObject RPC now accepts offset and cou
nt for string objects. String objects now contain length, offset, and count pro
perties. |
| 2612 3.2 | Isolate objects now include the runnable bit and many debugger related RPC
s will return an error if executed on an isolate before it is runnable. | 2612 3.2 | Isolate objects now include the runnable bit and many debugger related RPC
s will return an error if executed on an isolate before it is runnable. |
| 2613 3.3 | Pause event now indicates if the isolate is paused at an await, yield, or
yield* suspension point via the 'atAsyncSuspension' field. Resume command now su
pports the step parameter 'OverAsyncSuspension'. A Breakpoint added syntheticall
y by an 'OverAsyncSuspension' resume command identifies itself as such via the '
isSyntheticAsyncContinuation' field. | 2613 3.3 | Pause event now indicates if the isolate is paused at an await, yield, or
yield* suspension point via the 'atAsyncSuspension' field. Resume command now su
pports the step parameter 'OverAsyncSuspension'. A Breakpoint added syntheticall
y by an 'OverAsyncSuspension' resume command identifies itself as such via the '
isSyntheticAsyncContinuation' field. |
| 2614 3.4 | Add the superType and mixin fields to Class. Added new pause event 'None'. | 2614 3.4 | Add the superType and mixin fields to Class. Added new pause event 'None'. |
| 2615 3.5 | Add the error field to SourceReportRange. Clarify definition of token pos
ition. Add "Isolate must be paused" error code. | 2615 3.5 | Add the error field to SourceReportRange. Clarify definition of token pos
ition. Add "Isolate must be paused" error code. |
| 2616 3.6 (unreleased) | Add 'scopeStartTokenPos', 'scopeEndTokenPos', and 'declaratio
nTokenPos' to BoundVariable. Add 'PausePostRequest' event kind. Add 'Rewind' Ste
pOption. Add error code 107 (isolate cannot resume). Add 'reloadSources' RPC and
related error codes. | 2616 3.6 (unreleased) | Add 'scopeStartTokenPos', 'scopeEndTokenPos', and 'declaratio
nTokenPos' to BoundVariable. Add 'PausePostRequest' event kind. Add 'Rewind' Ste
pOption. Add error code 107 (isolate cannot resume). Add 'reloadSources' RPC and
related error codes. |
| 2617 | 2617 |
| 2618 [discuss-list]: https://groups.google.com/a/dartlang.org/forum/#!forum/observato
ry-discuss | 2618 [discuss-list]: https://groups.google.com/a/dartlang.org/forum/#!forum/observato
ry-discuss |
| OLD | NEW |