Comment #3 on issue 3289 by [email protected]: Suspended generator activations can become invalid when debugging is enabled
http://code.google.com/p/v8/issues/detail?id=3289

Alternatively, you could change Debug::PrepareforBreakPoints. It iterates the heap, looking for function objects. You could also have it look for generator objects.

When it finds one, it will recompile the code of the function to it for debugging (if not already done) and will recalculate the offset from the statement position. That way, you don't need to reference the code object from the generator.

You will still need a way to convert statement position to offset though, and it seems that reloc info is the way to go.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to