| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index c9fb2825f2e91b7846540782d85cd266d62d5a88..9803b24e825b166919ae54932b40b67e3c0b6399 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -13245,6 +13245,13 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_SetIsObserved) {
|
| }
|
|
|
|
|
| +RUNTIME_FUNCTION(MaybeObject*, Runtime_SetHasActiveObjectObservers) {
|
| + ASSERT(args.length() == 0);
|
| + isolate->set_has_active_object_observers(true);
|
| + return isolate->heap()->undefined_value();
|
| +}
|
| +
|
| +
|
| RUNTIME_FUNCTION(MaybeObject*, Runtime_GetObservationState) {
|
| ASSERT(args.length() == 0);
|
| return isolate->heap()->observation_state();
|
|
|