Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: runtime/vm/service/service_dev.md

Issue 2788993002: Fix test failure and add new awaiterFrames to service_dev.md (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/observatory/tests/service/async_single_step_exception_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 2417 matching lines...) Expand 10 before | Expand all | Expand 10 after
2428 2428
2429 Note that _SourceReportRange_ does not extend [Response](#response) 2429 Note that _SourceReportRange_ does not extend [Response](#response)
2430 and therefore will not contain a _type_ property. 2430 and therefore will not contain a _type_ property.
2431 2431
2432 ### Stack 2432 ### Stack
2433 2433
2434 ``` 2434 ```
2435 class Stack extends Response { 2435 class Stack extends Response {
2436 Frame[] frames; 2436 Frame[] frames;
2437 Frame[] asyncCausalFrames [optional]; 2437 Frame[] asyncCausalFrames [optional];
2438 Frame[] awaiterFrames [optional];
2438 Message[] messages; 2439 Message[] messages;
2439 } 2440 }
2440 ``` 2441 ```
2441 2442
2442 ### ExceptionPauseMode 2443 ### ExceptionPauseMode
2443 2444
2444 ``` 2445 ```
2445 enum ExceptionPauseMode { 2446 enum ExceptionPauseMode {
2446 None, 2447 None,
2447 Unhandled, 2448 Unhandled,
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
2610 2.0 | Describe protocol version 2.0. 2611 2.0 | Describe protocol version 2.0.
2611 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. 2612 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.
2612 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. 2613 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.
2613 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. 2614 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.
2614 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. 2615 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.
2615 3.4 | Add the superType and mixin fields to Class. Added new pause event 'None'. 2616 3.4 | Add the superType and mixin fields to Class. Added new pause event 'None'.
2616 3.5 | Add the error field to SourceReportRange. Clarify definition of token pos ition. Add "Isolate must be paused" error code. 2617 3.5 | Add the error field to SourceReportRange. Clarify definition of token pos ition. Add "Isolate must be paused" error code.
2617 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. 2618 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.
2618 2619
2619 [discuss-list]: https://groups.google.com/a/dartlang.org/forum/#!forum/observato ry-discuss 2620 [discuss-list]: https://groups.google.com/a/dartlang.org/forum/#!forum/observato ry-discuss
OLDNEW
« no previous file with comments | « runtime/observatory/tests/service/async_single_step_exception_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698