[Webkit-unassigned] [Bug 135358] [ftlopt] Create a more generic way for VMEntryScope to notify those interested that it will be destroyed

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jul 29 12:22:04 PDT 2014


https://bugs.webkit.org/show_bug.cgi?id=135358





--- Comment #9 from Saam Barati <sbarati at apple.com>  2014-07-29 12:22:16 PST ---
(In reply to comment #7)
> (From update of attachment 235648 [details])
> I think you re-uploaded the old patch.

No, this was the updated patch. But I think I took your point yesterday as being that we should call this method on globalObject->debugger and still compare that to 'this', but maybe, you meant that we shouldn't compare to 'this' at all?

So:
Debugger* debugger = globalObject->debugger();
> +            if (debugger && debugger == this)
> +                debugger->recompileAllJSFunctions(vm);

==> becomes ==>

> +            if (debugger)
> +                debugger->recompileAllJSFunctions(vm);


Is that what you meant?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list