Hi, 

I'm struggling to figure out precisely what/where keeps an anonymous 
function alive when used as an event handler in the WebKit integration, 
example: 

document.getElementById("clickMe").addEventListener('click', function (e) { 
alert(e); });

WebKit only keeps a weak pointer to the function, and I can't figure out 
how its kept alive through GC, as I can't seem to find a live pointer to it 
anywhere else, but I must be overlooking something. 

Regards, Morten

-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users

Reply via email to