Bug 1073753: Document GC sensitivity of Debugger.prototype.onNewGlobalObject. r=jorendorff DONTBUILD

This commit is contained in:
Jim Blandy 2018-08-07 11:33:56 -07:00
Родитель 96dd9699d1
Коммит 1d92752dd6
2 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -246,6 +246,12 @@ compartment.
thereby escaping the capability-based limits. For this reason,
`onNewGlobalObject` is only available to privileged code.
Note that, even though the presence of a `Debugger`'s `onNewGlobalObject`
hook can have arbitrary side effects, the garbage collector does not
consider the presence of the hook sufficient reason to keep the `Debugger`
alive. Thus, the behavior of code that uses `onNewGlobalObject` on unrooted,
enabled `Debugger`s may be affected by the garbage collector's activity, and
is not entirely deterministic.
## Function Properties of the Debugger Prototype Object

Просмотреть файл

@ -837,6 +837,9 @@ Debugger::hasAnyLiveHooks(JSRuntime* rt) const
if (!enabled)
return false;
// A onNewGlobalObject hook does not hold its Debugger live, so its behavior
// is nondeterministic. This behavior is not satisfying, but it is at least
// documented.
if (getHook(OnDebuggerStatement) ||
getHook(OnExceptionUnwind) ||
getHook(OnNewScript) ||