[Webkit-unassigned] [Bug 20107] Array.push disappeared

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jul 20 03:28:27 PDT 2008


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





------- Comment #5 from ap at webkit.org  2008-07-20 03:28 PDT -------
At the moment, WebCore uses its own JSGlobalData object (which holds JS heap,
identifier tables etc), while all contexts created with JSGlobalContextCreate()
share another instance of JSGlobalData. This means that JS objects cannot be
used across WebCore and manually created contexts in any way, but this does not
happen in the test anyway. This also means that nothing that happens in WebCore
should affect contexts created via JSC API, or vice versa.

Soon, I intend to change JSGlobalContextCreate() to use a private instance of
JSGlobalData for each context, and to introduce a new API to create contexts
share global data.


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



More information about the webkit-unassigned mailing list