| Index: runtime/vm/service/service.md
|
| diff --git a/runtime/vm/service/service.md b/runtime/vm/service/service.md
|
| index f9ee96a532367a6626a42d406e3872ae66cfbd85..737c710e99229872ffb1a6f58d8655d060157dd3 100644
|
| --- a/runtime/vm/service/service.md
|
| +++ b/runtime/vm/service/service.md
|
| @@ -38,6 +38,7 @@ apparently outside the scope of the JSON-RPC specification.
|
| - [removeBreakpoint](#removebreakpoint)
|
| - [resume](#resume)
|
| - [setName](#setname)
|
| + - [setLibraryDebuggable](#setlibrarydebuggable)
|
| - [streamCancel](#streamcancel)
|
| - [streamListen](#streamlisten)
|
| - [Public Types](#public-types)
|
| @@ -563,6 +564,19 @@ The _setName_ RPC is used to change the debugging name for an isolate.
|
|
|
| See [Success](#success).
|
|
|
| +### setLibraryDebuggable
|
| +
|
| +```
|
| +Success setLibraryDebuggable(string isolateId,
|
| + string libraryId,
|
| + bool isDebuggable)
|
| +```
|
| +
|
| +The _setLibraryDebuggable_ RPC is used to enable or disable whether
|
| +breakpoints and stepping work for a given library.
|
| +
|
| +See [Success](#success).
|
| +
|
| ### streamCancel
|
|
|
| ```
|
| @@ -1296,6 +1310,9 @@ class Library extends Object {
|
| // The uri of this library.
|
| string uri;
|
|
|
| + // Is this library debuggable? Default true.
|
| + bool debuggable;
|
| +
|
| // A list of the imports for this library.
|
| @Library[] imports;
|
|
|
| @@ -1315,6 +1332,8 @@ class Library extends Object {
|
|
|
| A _Library_ provides information about a Dart language library.
|
|
|
| +See [setLibraryDebuggable](#setlibrarydebuggable).
|
| +
|
| ### List
|
|
|
| ```
|
|
|