| Index: runtime/observatory/lib/src/service/object.dart
|
| diff --git a/runtime/observatory/lib/src/service/object.dart b/runtime/observatory/lib/src/service/object.dart
|
| index e9f9b867f92afc7cff97b58c20a65203b85eff61..ecd990cb8e9e6731abba140ce504e9ed68f19ad9 100644
|
| --- a/runtime/observatory/lib/src/service/object.dart
|
| +++ b/runtime/observatory/lib/src/service/object.dart
|
| @@ -1175,6 +1175,11 @@ class Isolate extends ServiceObjectOwner with Coverage {
|
| { 'functionId': function.id });
|
| }
|
|
|
| + Future<ServiceObject> addBreakOnActivation(Instance closure) {
|
| + return invokeRpc('_addBreakpointAtActivation',
|
| + { 'objectId': closure.id });
|
| + }
|
| +
|
| Future removeBreakpoint(Breakpoint bpt) {
|
| return invokeRpc('removeBreakpoint',
|
| { 'breakpointId': bpt.id });
|
|
|