Hi. My question initially originated from CEF V8 integration, described on next issues: https://code.google.com/p/chromiumembedded/issues/detail?id=323 , https://code.google.com/p/chromiumembedded/issues/detail?id=960 .
In short problem looks as: CEF creates persistent and weak handles for every created V8 value ( Boolean, Integers ). And in this case i found memory leak, when for example our native function returns primitive value. For complex values (Object), this is did not appear at all. So it is possible that persistent weak handles built on top of primitive values did not collected? And additional question: it is safe return persistent handle via raw return handle; instead of return handle_scope.Close(handle); ? -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" 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/groups/opt_out.
