On Sat, Sep 27, 2014 at 1:17 AM, Francisco Tolmasky <[email protected]> wrote: > Hi guys, > > Not sure if this is possible, but basically what I'd like to be able to do > is "fork" a JavaScript context. > Essentially, at some point in my application I want to take the existing > context, copy it, then continue > mutating the copy, such that the "original" remains in its old state (and > could potentially be mutated > in a different way). I've read up a little on v8 snapshotting and > serialization, but it may have nothing > to do with something like this. > > Thanks, > > Francisco
You could use snapshotting for that but only at build time, not at run-time. -- -- 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/d/optout.
